[gnome-control-center/auto-changelogs] [build] automatically generate ChangeLog files in certain directories
- From: Thomas Wood <thos src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-control-center/auto-changelogs] [build] automatically generate ChangeLog files in certain directories
- Date: Thu, 12 Nov 2009 22:59:01 +0000 (UTC)
commit 0860ad084ad8515f1008bc7add695defb20c2358
Author: Thomas Wood <thos gnome org>
Date: Thu Nov 12 22:58:44 2009 +0000
[build] automatically generate ChangeLog files in certain directories
Add a dist-hook to generate the ChangeLog files in the specified
directories by using the version control system (git) log.
Makefile.am | 36 +
capplets/about-me/ChangeLog | 624 +--
capplets/accessibility/at-properties/ChangeLog | 265 +-
capplets/appearance/ChangeLog | 2046 +----
capplets/common/ChangeLog | 1992 +----
capplets/default-applications/ChangeLog | 1079 +--
capplets/display/ChangeLog | 570 +--
capplets/keybindings/ChangeLog | 860 +--
capplets/keyboard/ChangeLog | 1188 +---
capplets/mouse/ChangeLog | 808 +--
capplets/network/ChangeLog | 404 +-
capplets/windows/ChangeLog | 471 +-
help/ChangeLog | 408 +-
libwindow-settings/ChangeLog | 363 +-
po/ChangeLog |12580 +-----------------------
shell/ChangeLog | 106 +-
typing-break/ChangeLog | 319 +-
17 files changed, 68 insertions(+), 24051 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index daf2c98..f7cb4c4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -64,3 +64,39 @@ if GCONF_SCHEMAS_INSTALL
done \
fi
endif
+
+# Directories which require a ChangeLog file generated
+CHANGELOG_DIRS = \
+ capplets/about-me \
+ capplets/accessibility/at-properties \
+ capplets/appearance \
+ capplets/common \
+ capplets/default-applications \
+ capplets/display \
+ capplets/keybindings \
+ capplets/keyboard \
+ capplets/mouse \
+ capplets/network \
+ capplets/windows \
+ help \
+ libwindow-settings \
+ po \
+ shell \
+ typing-break
+
+
+dist-hook:
+ @if test -d "$(srcdir)/.git"; \
+ then \
+ for subdir in $(CHANGELOG_DIRS) ; do \
+ echo Creating $$subdir/ChangeLog && \
+ ( cd "$(top_srcdir)" && \
+ echo '# Generated by Makefile. Do not edit.'; echo; \
+ $(top_srcdir)/missing --run git log --stat --relative=$$subdir $$subdir) > ChangeLog.tmp \
+ && mv -f ChangeLog.tmp $(top_distdir)/$$subdir/ChangeLog \
+ || ( rm -f ChangeLog.tmp ; \
+ echo Failed to generate $$subdir/ChangeLog >&2 ); \
+ done \
+ else \
+ echo A git clone is required to generate a ChangeLog >&2; \
+ fi
diff --git a/capplets/about-me/ChangeLog b/capplets/about-me/ChangeLog
index 1ec2161..3d2a7ae 100644
--- a/capplets/about-me/ChangeLog
+++ b/capplets/about-me/ChangeLog
@@ -1,623 +1,3 @@
-2009-05-21 Jens Granseuer <jensgr gmx net>
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
- Patch by: Vivian Zhang <vivian zhang intel com>
-
- * gnome-about-me.c (main): initialize the GThread subsystem because
- the thumbnail factory needs it (bug #583451)
-
-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)
-
-==================== 2.25.92 ====================
-
-2009-02-23 Thomas H.P. Andersen <phomes gmail com>
-
- * eel-gtk-macros.h: Replace deprecated GtkType with GType (bug #572325)
-
-==================== 2.25.90 ====================
-
-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)
-
-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
-
-2009-02-01 Jens Granseuer <jensgr gmx net>
-
- * gnome-about-me.c: define GNOME_DESKTOP_USE_UNSTABLE_API to fix
- build
-
-==================== 2.25.3 ====================
-
-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)
-
-2008-12-08 Bastien Nocera <hadess hadess net>
-
- * gnome-about-me-fingerprint.c (enroll_fingerprints):
- Add title to enrollment window
-
-==================== 2.25.2 ====================
-
-2008-12-02 Rodrigo Moya <rodrigo gnome-db org>
-
- * Makefile.am: add fprintd-marshal.list to EXTRA_DIST.
-
-2008-11-28 Bastien Nocera <hadess hadess net>
-
- * gnome-about-me.c (create_fingerprint_button): Fix fingerprint
- buttons always being unsensitive with PolicyKit support
-
-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)
-
-==================== 2.25.1 ====================
-
-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.
-
-Fri Oct 24 19:16:46 2008 Søren Sandmann <sandmann redhat com>
-
- * gnome-about-me.c (main): Remove unused GnomeProgram variable
-
-==================== 2.24.0.1 ====================
-
-==================== 2.23.2 ====================
-
-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)
-
-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)
-
-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
-
-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)
-
-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
-
-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.
-
-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)
-
-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)
-
-2008-02-16 Jens Granseuer <jensgr gmx net>
-
- * Makefile.am: don't distribute the .desktop.in file
-
-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
-
-2007-12-06 Jens Granseuer <jensgr gmx net>
-
- * gnome-about-me-password.c: (passdlg_spawn_passwd): add a translation
- hint
-
-2007-12-06 Jens Granseuer <jensgr gmx net>
-
- * gnome-about-me.glade: don't mark empty and padding strings for
- translation (bug #502087)
-
-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)
-
-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)
-
-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")
-
-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)
-
-2007-08-21 Jens Granseuer <jensgr gmx net>
-
- * gnome-about-me.c: honour mail address attributes when setting
- up Home and Work addresses
-
-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
-
-2007-07-23 Jens Granseuer <jensgr gmx net>
-
- * gnome-about-me.glade: add a tooltip to the image button to make it
- accessible
-
-2007-06-23 Guilherme de S. Pastore <gpastore gnome org>
-
- * gnome-about-me-password.c: fix a small typo ("wether" -> "whether")
- in the comments.
-
-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)
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * gnome-about-me.desktop.in.in: renamed Bugzilla product.
-
-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
-
-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)
-
-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)
-
-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)
-
-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
-
-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
-
-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)
-
-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)
-
-2007-02-11 Jens Granseuer <jensgr gmx net>
-
- * gnome-about-me.c: (about_me_focus_out): fix possible crash
-
-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
-
-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
-
-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.
-
-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.
-
-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.
-
-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.
-
-2006-08-07 Sebastien Bacher <seb128 debian org>
-
- * gnome-about-me.c: (about_me_load_photo), (about_me_update_photo):
- - fix build with the new libebook API (Closes: #348821)
-
-2006-07-23 Sebastien Bacher <seb128 debian org>
-
- * gnome-about-me.desktop.in.in: don't list the Application category,
- patch by Vincent Fretin <vincent fretin gmail com> (Closes: #344321)
-
-2006-06-11 Rodrigo Moya <rodrigo novell com>
-
- Fixes #344468
-
- * gnome-about-me-password.c: removed redundant headers.
-
-2006-05-26 Sebastien Bacher <seb128 debian org>
-
- * gnome-about-me.glade: fix label alignment (Closes: #343056)
-
-2006-05-26 Rodrigo Moya <rodrigo novell com>
-
- Fixes #324971
-
- * gnome-about-me-password.c (passdlg_spawn_passwd): fixed typo.
-
-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.
-
-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.
-
-2005-08-16 Diego Gonzalez <diego pemas net>
-
- * gnome-about-me.glade: revert the part of the previous patch that
- modified the UI, as we are in UI freeze.
-
-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.
-
-2005-08-14 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * gnome-about-me-password.c (update_password): Replace "passwod is
- to simple" with "Password is too simple".
-
-
-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.
-
-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.
-
-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.
-
-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.
-
-2005-07-16 Diego Gonzaler <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.
-
-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
-
-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.
-
-2005-07-13 Sebastien Bacher <seb128 debian org>
-
- * .cvsignore: new file.
-
-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.
-
-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.
-
-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.
-
-2005-07-12 Diego Gonzalez <diego pemas net>
-
- * gnome-about-me.png: this file is no longer used.
-
-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
-
-2005-07-08 Sebastien Bacher <seb128 debian org>
-
- * gnome-about-me.desktop.in: this file is not useful on the CVS.
-
-2005-07-07 Sebastien Bacher <seb128 debian org>
-
- * gnome-about-me-password.c: (wait_child):
- fixed some typo, Clytie Siddall <clytie riverland net au>
- (Closes: #302614).
-
-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
-
-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)
-
-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.
-
-2005-07-05 Sebastien Bacher <seb128 debian org>
-
- * Makefile.am: clean the desktop file.
-
-2005-07-05 Sebastien Bacher <seb128 debian org>
-
- * Makefile.am: fix the list of source files.
-
-2005-06-23 Diego Gonzalez <diego pemas net>
-
- * gnome-about-me-password.c (gnome_about_me_password):
- Fix another crasher
-
-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
-
-2005-06-15 Diego Gonzalez <diego pemas net>
-
- * gnome-about-me.glade: Change the look of the "change Password"
- dialog.
- * gnome-about-me-password.c: Change completely the inner workings
- and add a way to meausure the quality of the password.
- * cracklib/*: code from cracklib2 to check the quality of the
- password.
-
- Several other changes...
-
-2005-05-16 Olav Vitters <olav bkor dhs org>
-
- * gnome-about-me.glade: Remove garbage text. Patch by Benjamin
- LeMasurier. Fixes bug #162492.
-
-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.
-
-2005-03-29 Diego Gonzalez <diego pemas net>
-
- * Makefile.am: fix tabs
-
-2005-02-09 Sebastien Bacher <seb128 debian org>
-
- * Makefile.am: build e-util-marshal.c.
-
-2004-12-23 Sebastien Bacher <seb128 debian org>
-
- * gnome-about-me.glade: fixed a typo (Closes: #162094).
diff --git a/capplets/accessibility/at-properties/ChangeLog b/capplets/accessibility/at-properties/ChangeLog
index 763e803..3d2a7ae 100644
--- a/capplets/accessibility/at-properties/ChangeLog
+++ b/capplets/accessibility/at-properties/ChangeLog
@@ -1,264 +1,3 @@
-==================== 2.25.90 ====================
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-==================== 2.25.1 ====================
-
-Sat Oct 25 23:05:22 2008 Søren Sandmann <sandmann redhat com>
-
- * main.c: Use dbus methods to log out instead of GnomeClient.
-
-Fri Oct 24 18:31:25 2008 Søren Sandmann <sandmann redhat com>
-
- * main.c (main): Use capplet_init() instead of gnome_program_init()
-
-==================== 2.24.0.1 ====================
-
-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)
-
-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)
-
-==================== 2.23.2 ====================
-
-2008-04-16 Jens Granseuer <jensgr gmx net>
-
- * main.c: (cb_at_preferences): open the preferred applications dialog
- on the a11y page (bug #528196)
-
-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)
-
-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-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 gnome-control-center will appead under Personal (closes
- bug #515075).
-
-2008-01-02 Denis Washington <denisw svn gnome org>
-
- * main.c: (cb_keyboard_preferences): Spawn the accessibility
- tab of the keyboard capplet instead of at-properties.
-
-2007-11-26 Sebastien Bacher <seb128 ubuntu com>
-
- * main.c: (at_enable_update): enable the preferred applications button,
- patch by Chris Jones (Closes: #499332)
-
-2007-10-07 Luca Ferretti <elle uca libero it>
-
- Fixes #484351
-
- * at-properties.desktop.in.in: don't use 'Preferences' word for
- application name.
-
-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)
-
-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
-
-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)
-
-2007-05-05 Jens Granseuer <jensgr gmx net>
-
- * at-enable-dialog.glade: fix critical warning
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * at-properties.desktop.in.in: renamed Bugzilla product.
-
-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.
-
-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
-
-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
-
-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.
-
-2006-08-07 Rodrigo Moya <rodrigo novell com>
-
- Fixes #348832
-
- * at-properties,desktop.in.in: Use correct Bugzilla component.
-
-2006-06-06 Sergey Udaltsov <svu gnome org>
-
- * Makefile.am: added $(GNOMECC_CAPPLETS_LIBS)
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * at-startup-session.c: Mark at_startup_string_compare() static.
-
-2004-11-09 Mark McLoughlin <mark skynet ie>
-
- * Makefile.am: install the .desktop file in
- $(datadir)/applications.
-
- * at-properties.desktop.in: add OnlyShowIn=GNOME;
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-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.
-
-2004-08-20 Frederic Crozat <fcrozat mandrakesoft com>
-
- * main.c: (setup_dialog):
- Use themed icon for window hint.
-
-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
-
-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-13 Jody Goldberg <jody gnome org>
-
- * Release 2.5.3
-
-2004-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-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.
-
-Fri Aug 1 14:28:52 2003 Jonathan Blandford <jrb redhat com>
-
- * main.c (init_startup_state): remove markup tags from translated
- strings, #118801.
-
-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.
-
-2003-07-16 Dennis Cranston <dennis_cranston at yahoo com>
-
- * at-enable-dialog.glade: Make close the default button.
-
-2003-07-16 Dennis Cranston <dennis_cranston at yahoo com>
-
- * at-enable-dialog.glade: Adjust widget padding and remove
- separator per HIG.
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-07-01 Daniel Baeyens <daniel baeyens hispalinux es>
- * capplets/accessibility/at-properties/at-enable-dialog.glade:
- "Assistive" is misspelled.
diff --git a/capplets/appearance/ChangeLog b/capplets/appearance/ChangeLog
index 6dcb771..3d2a7ae 100644
--- a/capplets/appearance/ChangeLog
+++ b/capplets/appearance/ChangeLog
@@ -1,2045 +1,3 @@
-2009-04-11 Benjamin Berg <benjamin sipsolutions net>
-
- * theme-util.c: (theme_delete):
- Only delete the theme if the user pressed OK (bug #578694)
-
-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)
-
-==================== 2.25.92 ====================
-
-2009-02-19 Jens Granseuer <jensgr gmx net>
-
- * theme-installer.c: (gnome_theme_install_real): fix message markup
- appearing in dialog (bug #572453)
-
-==================== 2.25.90 ====================
-
-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)
-
-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
-
-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
-
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-
-2008-11-29 Jens Granseuer <jensgr gmx net>
-
- * theme-installer.c: (file_theme_type): don't leak the filename
-
-2008-11-27 Jens Granseuer <jensgr gmx net>
-
- * theme-installer.c: (transfer_cancel_cb): really remove the
- temporary directory when the transfer is cancelled
-
-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)
-
-2008-11-09 Kjartan Maraas <kmaraas gnome org>
-
- * appearance-main.c: (init_appearance_data):
- Add missing argument to capplet_init().
-
-2008-11-08 Jens Granseuer <jensgr gmx net>
-
- * appearance-main.c: (init_appearance_data), (main): don't
- initialize gettext and gtk twice
-
-==================== 2.25.1 ====================
-
-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
-
-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()
-
-2008-10-11 Kjartan Maraas <kmaraas gnome org>
-
- * appearance-font.c: (application_font_to_gconf):
- * theme-installer.c: (invalid_theme_dialog),
- (gnome_theme_install_real):
- * theme-util.c: (theme_install_file):
- Fix GCC warnings from -Wformat-security.
-
-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)
-
-2008-10-07 Jens Granseuer <jensgr gmx net>
-
- * data/appearance.glade: revert r9025 and reinstate the help buttons
-
-2008-09-29 Jens Granseuer <jensgr gmx net>
-
- * data/appearance.glade: really remove the non-working help button
- (bug #473181)
-
-==================== 2.24.0.1 ====================
-
-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)
-
-2008-09-21 Jens Granseuer <jensgr gmx net>
-
- * data/appearance.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.
-
-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)
-
-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)
-
-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)
-
-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
-
-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)
-
-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
-
-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
-
-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-20 Jens Granseuer <jensgr gmx net>
-
- * theme-util.c: (theme_delete): don't delete ~/.icons when deleting
- the last icon theme (bug #543763)
-
-2008-07-15 Matthias Clasen <mclasen redhat com>
-
- 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.
-
-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-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.
-
-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.
-
-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".
-
-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 libgnome-desktop.
-
-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
-
-2008-05-24 Jens Granseuer <jensgr gmx net>
-
- * theme-util.c: (directory_delete_recursive): also delete the
- directory itself
-
-2008-05-24 Jens Granseuer <jensgr gmx net>
-
- * theme-installer.c: (cleanup_tmp_dir): fix up last commit
-
-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
-
-==================== 2.23.2 ====================
-
-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
-
-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
-
-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)
-
-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
-
-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
-
-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)
-
-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)
-
-2008-05-01 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init): update for changes in the
- theme-info API
-
-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
-
-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)
-
-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)
-
-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.
-
-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
-
-2008-04-08 Jens Granseuer <jensgr gmx net>
-
- * gedit-message-area.h: fix include (sync with gedit)
-
-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)
-
-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
-
-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)
-
-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
-
-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)
-
-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
-
-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
-
-2008-02-15 Kjartan Maraas <kmaraas gnome org>
-
- * appearance-desktop.c: (wp_scale_type_changed),
- (wp_shade_type_changed): Make it build.
-
-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)
-
-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.
-
-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)
-
-2008-02-05 Jens Granseuer <jensgr gmx net>
-
- * data/appearance.glade: add a comment for translators (bug #514598)
-
-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.
-
-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
-
-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
-
-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),
- (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).
-
-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
-
-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...
-
-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-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)
-
-2007-11-22 Frederic Crozat <fcrozat mandriva com>
-
- * gnome-wp-item.c: Fix detection of image mimetype (bug #498980)
-
-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)
-
-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-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)
-
-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
-
-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
-
-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)
-
-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
-
-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
-
-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
-
-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
-
-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
-
-2007-10-28 Jens Granseuer <jensgr gmx net>
-
- * appearance-style.c: (changed_on_disk_cb): add support for live cursor
- theme updates
-
-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-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>
-
- 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
-
-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>
-
- * theme-util.c: (theme_delete): if the parent directory is empty after
- deleting a theme, delete the parent directory, too
-
-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
-
-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)
-
-2007-10-25 Denis Washington <denisw svn gnome org>
-
- * appearance-themes.c: Take cursor size into account in theme_is_equal(),
- and also watch the cursor theme/size gconf keys for changes.
-
-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
-
-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=;
-
-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)
-
-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
-
-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
-
-2007-09-28 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (theme_store_sort_func): make theme sorting
- case-insensitive (bug #481224)
-
-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
-
-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)
-
-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)
-
-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
-
-2007-09-16 Jens Granseuer <jensgr gmx net>
-
- * appearance-main.c: (main): add a comment for translators (bug #473379)
-
-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)
-
-2007-09-09 Claude Paroz <claude 2xlibre net>
-
- * data/appearance.glade: Correct translatable property value of Save As.
- Fixes #473810.
-
-2007-09-01 Jens Granseuer <jensgr gmx net>
-
- * gedit-message-area.c: (gedit_message_area_init): sync with upstream
-
-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
-
-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
-
-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
-
-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)
-
-2007-08-27 Jens Granseuer <jensgr gmx net>
-
- * appearance-style.c: (update_thumbnail_in_treeview): don't leak the
- thumbnails
-
-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)
-
-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)
-
-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>
-
- * 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)
-
-2007-08-22 Jens Granseuer <jensgr gmx net>
-
- * appearance-desktop.c: (wp_select_after_realize): if no background
- image set, select "no wallpaper"
-
-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)
-
-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)
-
-2007-08-11 Jens Granseuer <jensgr gmx net>
-
- * theme-installer.c: (gnome_theme_install_from_uri): fix leak
-
-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
-
-2007-08-09 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init): reenable theme lockdown
-
-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
-
-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
-
-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
-
-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
-
-2007-08-07 Jens Granseuer <jensgr gmx net>
-
- * appearance-style.c: (color_button_clicked_cb): remove stuff I forgot
- to delete
-
-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
-
-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
-
-2007-08-05 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init): reinstate select-after-realize;
- it's still necessary
-
-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)
-
-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)
-
-2007-08-04 Denis Washington <denisw svn gnome org>
-
- * appearance-style.c: (prepare_list):
- Only add a "Default Pointer" list item if there is
- no such GnomeThemeCursorInfo.
-
-2007-08-03 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (theme_thumbnail_update): oops, remove
- left-over devel ifdef
-
-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
-
-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)
-
-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>
-
- * appearance-style.c: (color_button_clicked_cb): simplify
-
-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.
-
-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
-
-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 Thomas Wood <thos gnome org>
-
- * appearance-style.c: (color_button_clicked_cb): Add missing '\n'.
-
-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)
-
-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-29 Jens Granseuer <jensgr gmx net>
-
- * appearance-main.c: (main): default to showing the background tab
- if wallpapers were given on the command line
-
-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)
-
-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.
-
-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().
-
-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
-
-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.
-
-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.
-
-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].
-
-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>
-
- * 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)
-
-2007-07-29 Thomas Wood <thos gnome org>
-
- * data/appearance.glade: Fix mnemonics and Customize Theme window title.
- Closes bug 461255.
-
-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
-
-2007-07-28 Denis Washington <denisw svn gnome org>
-
- * appearance-style.c: (prepare_list):
- Show readable_name in cursor theme list instead of name.
-
-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
-
-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
-
-2007-07-28 Thomas Wood <thos gnome org>
-
- * wp-cellrenderer.c: (cell_renderer_wallpaper_render): Use cairo to draw the
- cell renderer selection
-
-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
-
-2007-07-28 Thomas Wood <thos gnome org>
-
- * theme-util.c: Add missing include
-
-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
-
-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
-
-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.
-
-2007-07-27 Denis Washington <dwashington gmx net>
-
- * data/cursor-*.pcf:
- * data/mouse-cursor-*.png:
- Cursor fonts and thumbnails moved from gnome-mouse-properties.
-
- * data/Makefile.am:
- Install the new files.
-
-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
-
-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
-
-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
-
-2007-07-26 Jens Granseuer <jensgr gmx net>
-
- * gnome-wp-item.c: (gnome_wp_item_update_description): add a comment
- for translators (bug #460506)
-
-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.
-
-2007-07-26 Denis Washington <denisw svn gnome org>
-
- * data/appearance.glade:
- * appearance-style.c:
- * appearance-themes.c: (theme_load_from_gconf), (cursor_theme_changed),
- (prepare_list), (style_init):
- * theme-save.c: (write_theme_to_disk):
- * theme-util.h:
- Re-add basic support for cursor themes for X servers without the Xcursor
- extension, like the one on Solaris.
-
-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.
-
-
-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.
-
-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
-
-2007-07-24 Thomas Wood <thos gnome org>
-
- * data/Makefile.am: Add makefile
-
-2007-07-24 Thomas Wood <thos gnome org>
-
- * data: Add a data sub-directory for non-code items
-
-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
-
-2007-07-23 Jens Granseuer <jensgr gmx net>
-
- * appearance-desktop.c: (desktop_init): bump all tooltips code to gtk
- 2.11.6
-
-2007-07-23 Matthias Clasen <mclasen redhat com>
-
- * appearance-desktop.c: Use new GTK+ convenience API for
- icon view tooltips. (#455985)
-
-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)
-
-2007-07-08 Jens Granseuer <jensgr gmx net>
-
- * appearance-style.c: (cursor_size_scale_value_changed_cb): plug yet
- another leak
-
-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.
-
-2007-07-08 Jens Granseuer <jensgr gmx net>
-
- * appearance-desktop.c: (wp_view_tooltip_cb): fix leaks
-
-2007-07-05 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init):
- * appearance.glade: ellipsize the "Save As" button
-
-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
-
-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.
-
-2007-07-05 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.
-
-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)
-
-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
-
-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
-
-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.
-
-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.
-
-2007-06-26 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (theme_is_equal): ... and actually accept an empty
- color scheme setting as valid
-
-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
-
-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 ().
-
-2007-06-25 Denis Washington <denisw svn gnome org>
-
- * appearance.glade: Fixed resize problems.
-
-2007-06-25 Jens Granseuer <jensgr gmx net>
-
- * appearance-style.c: (prepare_list): don't try to use uninitialized
- GdkPixbuf
-
-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.
-
-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
-
-2007-06-23 Jens Granseuer <jensgr gmx net>
-
- * appearance-style.c: rearranged functions (no code changes)
-
-2007-06-23 Jens Granseuer <jensgr gmx net>
-
- * theme-util.c: (theme_delete): use STOCK_DELETE instead of STOCK_OK in
- the confirmation dialog
-
-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
-
-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
-
-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.
-
-2007-06-18 Jens Granseuer <jensgr gmx net>
-
- * theme-installer.c: (gnome_theme_install_real): fix compiler warning
-
-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
-
-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...
-
-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.
-
-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
-
-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).
-
-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.
-
-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
-
-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)
-
-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)
-
-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)
-
-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.
-
-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
-
-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
-
-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
-
-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
-
-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.
-
-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
-
-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
-
-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
-
-2007-06-05 Jens Granseuer <jensgr gmx net>
-
- * Makefile.am:
- * gnome-theme-package.xml.in: move theme package mime type over
- from the theme-manager (closes bug #444336)
-
-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
-
-2007-05-30 Jens Granseuer <jensgr gmx net>
-
- * appearance.glade: fix duplicate mnemonic
-
-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
-
-2007-05-25 Jens Granseuer <jensgr gmx net>
-
- * appearance-style.c: (prepare_list): don't leak thumbnails
-
-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)
-
-2007-05-25 Denis Washington <denisw svn gnome org>
-
- * theme-thumbnailing.png:
- Add theme-thumbnailing.png to Makefile.am.
-
-2007-05-25 Denis Washington <denisw svn gnome org>
-
- * theme-thumbnailing.png:
- Added as it is used by appearance-themes.c
-
-2007-05-25 Denis Washington <denisw svn gnome org>
-
- * appearance.glade: Fix button order in theme details dialog again.
-
-2007-05-25 Denis Washington <denisw svn gnome org>
-
- * 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.
-
-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
-
-2007-05-16 Denis Washington <denisw svn nome org>
-
- * appearance-desktop.c: (desktop_init): Minor code cleanup.
-
-2007-05-16 Denis Washington <denisw svn nome org>
-
- * appearance-desktop.c: (desktop_init): re-enable drag-and-drop for the
- wallpaper list.
-
-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
-
-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
-
-2007-05-13 Thomas Wood <thos gnome org>
-
- * appearance-style.c: (prepare_combo): Sort the items in the theme lists
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (theme_thumbnail_func): unref the thumbnail when
- we're done with it
-
-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.
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init), (theme_thumbnail_generate),
- (theme_thumbnail_func): fix asynchronous thumbnail generation
-
-2007-05-13 Thomas Wood <thos gnome org>
-
- * appearance-style.c: Add colour scheme functions
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * appearance.glade: fix duplicate mnemonic
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init): refix button name, too
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init): fix gcc 2 build again (bad thos)
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * appearance-desktop.c: (appearance_window_response):
- * appearance.glade: use predefined GTK constants for reponse ids
-
-2007-05-13 Thomas Wood <thos gnome org>
-
- * appearance-themes.c: (themes_init), (theme_changed_func): Use asynchronous
- methods to generate thumbnails.
-
-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
-
-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)
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * gnome-wp-item.c: (gnome_wp_item_free): don't leak the WPItems
-
-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
-
-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
-
-2007-05-13 Denis Washington <denisw svn nome org>
-
- * appearance.glade: fixed a small mistake in Jens' last commit.
-
-2007-05-13 Jens Granseuer <jensgr gmx net>
-
- * appearance.glade: fix font rendering button group assignment,
- rename Preferences tab to Interface
-
-2007-05-13 Denis Washington <denisw svn nome org>
-
- * gnome-wp-item.c: Made thumbnails in Desktop tab a bit smaller.
-
-2007-05-13 Thomas Wood <thos gnome org>
-
- * appearance.glade: Change "Desktop" tab label to "Background"
-
-2007-05-12 Denis Washington <denisw svn nome org>
-
- * 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.
-
-2007-05-12 Denis Washington <denisw svn nome org>
-
- * appearance-desktop.c: (wp_remove_wallpaper):
- gtk_icon_view_set_cursor() => gtk_icon_view_select_path()
-
-2007-05-12 Denis Washington <denisw svn nome org>
-
- * 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.
-
-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
-
-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
-
-2007-05-11 Denis Washington <denisw svn nome org>
-
- * appearance-desktop.c: (desktop_init):
- Fix the background list not being saved when closing the capplet window.
-
-2007-05-10 Denis Washington <denisw svn nome org>
-
- * 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.
-
-2007-05-09 Jens Granseuer <jensgr gmx net>
-
- * appearance-themes.c: (themes_init):
- * appearance.glade: change Open button label to Install...
-
-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
-
-2007-05-08 Denis Washington <denisw svn nome org>
-
- * appearance.glade:
- Set mnemonic widgets for the labels in the Desktop tab.
-
-2007-05-07 Thomas Wood <thos gnome org>
-
- * appearance-style.c: (conv_to_widget_cb), (prepare_combo): Remove some
- unnecessary code.
-
-2007-05-07 Thomas Wood <thos gnome org>
-
- * appearance-style.c: (prepare_combo): Fix icon theme combo box
-
-2007-05-07 Thomas Wood <thos gnome org>
-
- * appearance-style.c: (prepare_combo): Use GConfPropertyEditor for theme
- combo boxes
-
-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
-
-2007-05-07 Denis Washington <denisw svn nome org>
-
- * appearance.glade:
- * appearance-desktop.c: (desktop_init):
- Changed "Add" button in Desktop tab to "Add...".
-
-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
-
-2007-05-07 Thomas Wood <thos gnome org>
-
- * appearance.glade: Add a "Style" tab for the theme detail options
-
-2007-05-07 Thomas Wood <thos gnome org>
-
- * Makefile.am: Add FONT_CAPPLET_CFLAGS to INCLUDES
-
-2007-05-06 Jens Granseuer <jensgr gmx net>
-
- * appearance-main.c: (main): set application icon
-
-2007-05-06 Jens Granseuer <jensgr gmx net>
-
- * Makefile.am:
- * gnome-appearance-properties.desktop.in.in: add a desktop file
-
-2007-05-06 Denis Washington <denisw svn gnome org>
-
- * appearance.glade: make the Add Wallpaper and Remove buttons in the
- Desktop tab stock buttons.
-
-2007-05-04 Jens Granseuer <jensgr gmx net>
-
- * appearance-desktop.c: (desktop_init):
- * appearance.glade: more HIG and consistency fixing
-
-2007-05-04 Jens Granseuer <jensgr gmx net>
-
- * appearance-desktop.c: (desktop_init):
- * appearance.glade: fix string capitalization according to HIG
-
-2007-05-04 Denis Washington <denisw svn gnome org>
-
- * appearance.glade: Change tab order; Desktop now comes before Fonts.
-
-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
-
-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
-
-2007-05-04 Thomas Wood <thos gnome org>
-
- * appearance-themes.c: (themes_init): Use readable name rather than file name
- in themes list
-
-2007-05-03 Denis Washington <denisw svn gnome org>
-
- * appearance-desktop.c: (wp_tree_delete_event): Fixed a leak.
-
-2007-05-03 Denis Washington <denisw svn gnome org>
-
- * appearance.h:
- * appearance-desktop.c:
- Ported Jens Granseuer's patch for bug #332810 to the appearance capplet
- and applied it.
-
-
-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
-
-2007-05-02 Denis Washington <denisw svn gnome org>
-
- * Makefile.am: fizz says: don't indent with spaces in Makefile.am.
- * ChangeLog: I say: don't do so in ChangeLog either.
-
-2007-05-02 Denis Washington <denisw svn gnome org>
-
- * appearance-desktop.c: Added drag and drop, re-enabled the watch cursor
- when adding images, and removed some commented out code.
-
-2007-05-02 Denis Washington <denisw svn gnome org>
-
- * appearance-desktop.[ch]: Corrected copyright notice authors.
-
-2007-05-01 Denis Washington <denisw svn gnome org>
-
- * 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.
-
-2007-05-01 Thomas Wood <thos gnome org>
-
- * appearance.glade: Combine Themes and Appearance tabs
-
-2007-05-01 Jens Granseuer <jensgr gmx net>
-
- * appearance-ui.c: (ui_init):
- * appearance.glade: convert all instances of GtkOptionMenu to
- GtkComboBox
-
-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
-
-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
-
-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
-
-2007-04-30 Thomas Wood <thos gnome org>
-
- * appearance-main.c: (main):
- * appearance.h:
-
- Include config.h and add some comments.
-
-2007-04-30 Denis Washington <denisw svn gnome org>
-
- * appearance.glade: replace occurrences of "colour" with "color".
-
-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
-
-2007-04-30 Thomas Wood <thos gnome org>
-
- * appearance-main.c:
- * appearance-themes.c:
- * appearance-themes.h:
- * appearance.h:
-
- Add license headers
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
diff --git a/capplets/common/ChangeLog b/capplets/common/ChangeLog
index e47e296..3d2a7ae 100644
--- a/capplets/common/ChangeLog
+++ b/capplets/common/ChangeLog
@@ -1,1991 +1,3 @@
-2009-05-20 Jens Granseuer <jensgr gmx net>
-
- * gconf-property-editor.c (gconf_peditor_new): don't unref the GConf
- entry if it is NULL (bug #583117)
-
-2009-05-03 Jens Granseuer <jensgr gmx net>
-
- Patch by: <yselkowitz users sourceforge net>
-
- * gnome-theme-info.c (gtk_theme_info_missing_engine): fix theme
- engine lookups on platforms that don't use .so by using
- g_module_build_path (bug #581156)
-
-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)
-
-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)
-
-==================== 2.25.90 ====================
-
-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)
-
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-
-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)
-
-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)
-
-==================== 2.25.1 ====================
-
-2008-10-26 Jens Granseuer <jensgr gmx net>
-
- * capplet-util.c: (capplet_help): 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
-
-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:04:38 2008 Søren Sandmann <sandmann redhat com>
-
- * gconf-property-editor.c: Delete unused function
- gconf_property_editor_new_filename()
-
-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
-
-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.
-
-Fri Oct 24 18:22:06 2008 Søren Sandmann <sandmann redhat com>
-
- * capplet-util.[ch]: Add new capplet_init() function
-
-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()
-
-2008-10-11 Kjartan Maraas <kmaraas gnome org>
-
- * Makefile.am: Add CAPPLET_CFLAGS to INCLUDES to make
- it build.
-
-2008-10-11 Kjartan Maraas <kmaraas gnome org>
-
- * gconf-property-editor.c: (peditor_image_set_filename):
- Fix GCC warnings from -Wformat-security.
-
-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)
-
-==================== 2.24.0.1 ====================
-
-2008-09-02 Jens Granseuer <jensgr gmx net>
-
- * file-transfer-dialog.c: (file_transfer_job_schedule): properly
- initialize the callback data (bug #550263)
-
-2008-08-16 Jens Granseuer <jensgr gmx net>
-
- * gnome-theme-info.c: (gtk_theme_info_missing_engine): don't leak
- the theme engine path
-
-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
-
-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)
-
-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)
-
-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-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-15 Matthias Clasen <mclasen redhat com>
-
- Bug 533611 - add notification themes to the metatheme format
-
- * 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.
-
-2008-06-01 Thomas Wood <thos gnome org>
-
- * capplet-util.c:
- * capplet-util.h:
-
- Remove some redundant and unused code
-
-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-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.
-
-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
-
-==================== 2.23.2 ====================
-
-2008-05-17 Jens Granseuer <jensgr gmx net>
-
- * bonobo-property-editor-range.c:
- * bonobo-property-editor-range.h: remove unused files
-
-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
-
-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
-
-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-04 Jens Granseuer <jensgr gmx net>
-
- * gnome-theme-test.c: (main): doesn't need gnome-vfs any longer
-
-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
-
-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-04-20 Jens Granseuer <jensgr gmx net>
-
- * file-transfer-dialog.c: (file_transfer_dialog_finalize),
- (file_transfer_dialog_class_init): drop redundant GType stuff
-
-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-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-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
-
-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
-
-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
-
-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
-
-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-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)
-
-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
-
-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)
-
-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-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.
-
-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).
-
-2008-02-19 Jens Granseuer <jensgr gmx net>
-
- * file-transfer-dialog.c: (file_transfer_dialog_update_num_files): fix
- small leak
-
-2008-01-25 Jens Granseuer <jensgr gmx net>
-
- * capplet-stock-icons.c: (capplet_init_stock_icons): remove code
- for obsolete "stock" icons
-
-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
-
-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
-
-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)
-
-2007-12-09 Jens Granseuer <jensgr gmx net>
-
- * theme-thumbnail.c: (create_meta_theme_pixbuf): free metacity theme
- after use
-
-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)
-
-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.
-
-2007-11-11 Jens Granseuer <jensgr gmx net>
-
- * gnome-theme-info.c:
- * gnome-theme-info.h: remove GnomeThemeElement from the "public" API
-
-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-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.
-
-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>
-
- * gconf-property-editor.c: (gconf_peditor_new_tree_view): add cast to
- avoid "incompatible types" compiler warning
-
-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-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
-
-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
-
-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
-
-2007-10-25 Denis Washington <denisw svn gnome org>
-
- * gnome-theme-apply.c: Fix the cursor size being only being updated
- if the cursor theme changed too.
- * gnome-theme-info.c: Also watch /usr/share/cursors/xorg-x11 for
- cursor themes (path used by Gentoo Linux)
-
-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
-
-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
-
-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.
-
-2007-09-25 Jens Granseuer <jensgr gmx net>
-
- * theme-thumbnail.c: patch up an outdated comment about how the
- thumbnailer protocol works
-
-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
-
-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)
-
-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)
-
-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
-
-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.
-
-2007-08-20 Matthias Clasen <mclasen redhat com>
-
- Fixes #467552
-
- * gnome-theme-info.c (gnome_theme_init): avoid double-freed for cursor
- theme infos.
-
-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
-
-2007-08-17 Jens Granseuer <jensgr gmx net>
-
- * gnome-theme-info.c: (read_cursor_fonts): don't leak the cursor font
-
-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
-
-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.
-
-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
-
-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
-
-2007-08-04 Denis Washington <denisw svn gnome org>
-
- * 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)
-
-2007-08-03 Jens Granseuer <jensgr gmx net>
-
- * theme-thumbnail.c: reduce metatheme thumbnail size to 128x128
-
-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
-
-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)
-
-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
-
-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.
-
-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.
-
-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
-
-2007-07-28 Denis Washington <denisw svn gnome org>
-
- * gnome-theme-info.h:
- * 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.
-
-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.
-
-2007-07-28 Thomas Wood <thos gnome org>
-
- * gnome-theme-info.h: Add missing include
-
-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
-
-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)
-
-2007-07-25 Denis Washington <denisw svn gnome org>
-
- * gnome-theme-apply.c: (gnome_meta_theme_set):
- * gnome-theme-info.c: (add_common_icon_theme_dir_monitor),
- (gnome_theme_init):
- * gnome-theme-info.h:
- Re-add basic support for cursor themes for X servers without the Xcursor
- extension, like the one on Solaris.
-
-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.
-
-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.
-
-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
-
-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).
-
-2007-07-08 Jens Granseuer <jensgr gmx net>
-
- * gnome-theme-info.h: include gdk-pixbuf.h (fixes bug #454634)
-
-2007-07-05 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.
-
-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)
-
-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
-
-2007-06-26 Michael Terry <mike mterry name>
-
- * capplet-util.c, Makefile.am: Drastically simplify capplet_set_icon()
- to only look in the icon theme. Part of bug #450777.
-
-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.
-
-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.
-
-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
-
-2007-06-18 Jens Granseuer <jensgr gmx net>
-
- * Makefile.am: remove obsolete files
-
-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
-
-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.
-
-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
-
-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)
-
-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.
-
-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
-
-2007-06-06 Jens Granseuer <jensgr gmx net>
-
- * Bonobo_Control_Capplet_generic.oaf.in:
- * wrapper-script.in: remove obsolete files
-
-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
-
-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
-
-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
-
-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
-
-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)
-
-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
-
-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
-
-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
-
-2007-05-25 Denis Washington <denisw svn gnome org>
-
- * theme-thumbnail.c:
- Make gtk+ theme previews more compact.
-
-2007-05-25 Denis Washington <denisw svn gnome org>
-
- * theme-thumbnail.[ch]:
- Add functions to generate thumbnails for specific types of themes, for
- instance a metacity theme thumbnail.
-
-2007-05-24 Denis Washington <denisw svn gnome org>
-
- * gconf-property-editor.c: (peditor_tree_view_widget_changed):
- Scroll to new selected cell if the gconf value changes.
-
-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)
-
-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
-
-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
-
-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
-
-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
-
-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
-
-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
-
-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.
-
-2007-03-04 Thomas Wood <thos gnome org>
-
- * Makefile.am:
- * gtkrc-utils.c: (gtkrc_get_details):
- * gtkrc-utils.h:
- Move gtkrc-utils from theme-switcher to here.
-
- * 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.
-
-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.
-
-2007-01-29 Kjartan Maraas <kmaraas gnome org>
-
- * theme-thumbnail.c: Mark some stuff as static.
-
-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
-
-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.
-
-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).
-
-2007-01-06 Lucas Rocha <lucasr at mundo gmail com>
-
- Fixes #336286
-
- * capplet-util.c (capplet_init): switched from popt to GOptionContext.
-
-2007-01-05 Christian Persch <chpe gnome org>
-
- Fixes #393117
-
- * gnome-theme-info.c (read_icon_theme): fixed leak.
-
-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.
-
-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).
-
-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
-
-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.
-
-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)
-
-2006-07-05 Sergey Udaltsov <svu gnome org>
-
- * Makefile.am, added DBUS_LIBS, closing #346442
-
-2006-06-23 Sergey Udaltsov <svu gnome org>
-
- * Makefile.am, activate-settings-daemon.c: g-s-d activation is based
- on DBUS now.
-
-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.
-
-2006-03-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.
-
-2006-01-23 Thomas Wood <thos gnome org>
-
- * file-transfer-dialog.c: (create_titled_label): Prevent a
- Gtk-CRITICAL error
-
-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.
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * capplet-stock-icons.c: (capplet_register_stock_icons): Remove
- unused variable.
- * file-transfer-dialog.c: (file_transfer_dialog_update_num_files):
- Fix format specifiers.
- * gconf-property-editor.c: Mark some functions static.
- * gnome-theme-info.c: (top_theme_dir_changed),
- (top_icon_theme_dir_changed): Remove unused code.
-
-2005-10-11 Muktha <muktha narayan wipro com>
-
- * gnome-theme-info.h:
- * 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.
-
-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
-
-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).
-
-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
-
-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
-
-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.
-
-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
-
-2005-05-22 Sebastien Bacher <seb128 debian org>
-
- * gconf-property-editor.c: (peditor_font_value_changed),
- (peditor_font_widget_changed), (gconf_peditor_new_font):
- * gconf-property-editor.h:
- port of the font capplet to gtk_font_button and some cleanup,
- patch from paolo borelli <pborelli katamail com> (Closes: #160016).
-
-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).
-
-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).
-
-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.
-
-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.
-
-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.
-
-2005-01-02 Thomas Cataldo <thomas cataldo aliacom fr>
-
- * gconf-property-editor.c: (gconf_property_editor_finalize): plug
- gconf key leak.
-
-2004-11-24 Kjartan Maraas <kmaraas gnome org>
-
- * activate-settings-daemon.c: (popup_error_message):
- ANSIfication.
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-2004-04-15 Jody Goldberg <jody gnome org>
-
- * Release 2.6.1
-
-2004-04-07 Jody Goldberg <jody gnome org>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=130623
- * capplet-util.c (capplet_set_icon) : respect the icon theme
-
-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-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-13 Jody Goldberg <jody gnome org>
-
- * Release 2.5.3
-
-2004-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-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.
-
-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
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-07-03 Kjartan Maraas <kmaraas gnome org>
-
- * gconf-property-editor.c: (gconf_property_editor_finalize):
- Merge Anders' fix from stable.
-
-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.
-
-2003-06-24 Jody Goldberg <jody gnome org>
-
- * Release 2.3.3
-
-2003-05-13 Andrew Sobala <aes gnome org>
-
- * Makefile.am: build fixes for the below
- * gnome-theme-apply.c: pulled out from gnome-theme-manager.c
- * gnome-theme-apply.h: pulled out from gnome-theme-manager.c
- * theme-thumbnail.c: moved to libcommon
- * theme-thumbnail.h: moved to libcommon
-
-2003-05-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.1
-
-2003-05-01 Ross Burton <ross burtonini com>
-
- * gnome-theme-info.c (real_add_top_theme_dir_monitor):
- Monitor directories and symbolic links instead of just
- directories. Fixes #111990.
-
-2003-04-29 Kjartan Maraas <kmaraas gnome org>
-
- * gconf-property-editor.c: (gconf_peditor_new): Plug a leak
- * gnome-theme-info.c: (top_theme_dir_changed),
- (top_icon_theme_dir_changed), (real_add_top_theme_dir_monitor):
- Plug leaks and fix invalid reads reported by valgrind.
-
-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
-
-Tue Feb 4 17:09:18 2003 Jonathan Blandford <jrb redhat com>
-
- * Release 2.2.0.1
-
-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.
- Fix from Dmitry G. Mastrukov <dmitry taurussoft org>. Fixes
- #104296
-
-2003-01-27 Bastien Nocera <hadess hadess net>
-
- * gnome-theme-test.c: (main): C ninety what ?
-
-Tue Jan 21 01:15:14 2003 Jonathan Blandford <jrb gnome org>
-
- * Release 2.2.0
-
-Sun Jan 19 02:14:35 2003 Jonathan Blandford <jrb gnome org>
-
- * gnome-theme-test.c (main): add more debugging output.
-
-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.
-
-Thu Jan 16 02:41:09 2003 Jonathan Blandford <jrb gnome org>
-
- * Release 2.1.7
-
-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.
-
-Mon Jan 13 15:04:47 2003 Jonathan Blandford <jrb redhat com>
-
- * gnome-theme-info.c: rewrote to handle fam more correctly. Still
- a little broken in places, but much, much better than before.
-
-2003-01-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-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.
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-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.
-
-2002-11-23 Jody Goldberg <jody gnome org>
-
- * Release 2.1.3
-
-Tue Nov 5 15:48:33 2002 Jonathan Blandford <jrb gnome org>
-
- * gnome-theme-info.c: Change the file format a bunch.
-
-2002-11-02 Jody Goldberg <jody gnome org>
-
- * Release 2.1.2
-
-Fri Nov 1 11:03:34 2002 Jonathan Blandford <jrb gnome org>
-
- * gnome-theme-info.[ch]: Moved theme-common, and gave more
- features.
-
-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-07-16 Jody Goldberg <jody gnome org>
-
- * gconf-property-editor.c (gconf_value_int_to_float) : add a peditor
- arg so that these can be used without wrappers.
- (gconf_value_float_to_int) : ditto.
-
-2002-07-10 Jody Goldberg <jody gnome org>
-
- * capplet-util.c (capplet_set_icon) : look in more places.
-
-2002-07-02 Jody Goldberg <jody gnome org>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=86018
- * gconf-property-editor.c (peditor_image_set_filename) : Patch from
- Chema. We should only assign the filename to the label if the file
- is valid.
-
-2002-06-27 Jody Goldberg <jody gnome org>
-
- * capplet-util.c (capplet_set_icon) : new util.
-
-2002-06-21 Stephen Browne <stephen browne sun com>
-
- * wm-common.[ch] : added new files to expose
- wm_common_get_current_window_manager and
- wm_common_register_window_manager_change
-
-2002-06-13 Jody Goldberg <jody gnome org>
-
- * capplet-util.c (capplet_help) : Use the new utility.
- (capplet_error_dialog) : split out into a new utility.
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-2002-05-28 Satyajit Kanungo <satyajit kanungo wipro com>
-
- * capplet-util.c : capplet_help () The Help directory is changed to
- user-guide.
-
-2002-05-26 Jody Goldberg <jody gnome org>
-
- * capplet-util.c (capplet_help) : new utility.
-
-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
-
-Tue May 14 12:08:17 2002 Jonathan Blandford <jrb redhat com>
-
- * theme-common.c (theme_common_init): confirm that the ~/.themes/
- directory exists.
-
-2002-04-29 Rachel Hestilow <hestilow ximian com>
-
- * file-transfer-dialog.c (file_transfer_dialog_update_cb):
- Set dialog title to current phase.
-
-2002-04-29 Rachel Hestilow <hestilow ximian com>
-
- * file-transfer-dialog.[ch]: Added.
-
- * Makefile.am: Compile file-transfer-dialog.[ch].
-
-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-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.
-
-Thu Apr 18 17:56:25 2002 Jonathan Blandford <jrb redhat com>
-
- * theme-common.c: Notify when the theme changes.
-
-2002-04-18 Jody Goldberg <jody gnome org>
-
- * activate-settings-daemon.c (static) : message dialogs must have
- separators.
-
-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.
-
-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.
-
-2003-03-26 Kjartan Maraas <kmaraas gnome org>
-
- * activate-settings-daemon.c: Fix a string.
-
-2002-03-25 Lauris Kaplinski <lauris ximian com>
-
- * gconf-property-editor.c (gconf_peditor_widget_set_guard): Test for NULL
- gconf value
-
-2002-03-19 Richard Hestilow <hestilow ximian com>
-
- * Makefile.am: Include libbackground (used for preview-file-selector).
- Change into a libtool library so we can link against libbackground.
-
- * gconf-property-editor.c:
- (peditor_enum_int_from_string): Added argument use_nick; set to true
- if the string was a nick.
- (peditor_enum_string_from_int): Use nick only if use_nick is true.
- (gconf_peditor_new_image): Added.
- (gconf_peditor_new_select_radio_with_enum): Added.
- (peditor_select_radio_value_changed): Reverse radio group.
- (peditor_select_radio_widget_changed): Reverse radio group.
-
-2002-03-17 Kjartan Maraas <kmaraas gnome org>
-
- * activate-settings-daemon.c: Mark a string. #include <config.h>
-
-2002-03-17 Jonathan Blandford <set EMAIL_ADDRESS environment variable>
-
- reviewed by: <delete if not using a buddy>
-
- * Makefile.am:
- * theme-common.c: (themes_common_list_add_dir),
- (theme_common_get_list), (theme_common_list_free):
- * theme-common.h:
-
-2002-03-14 Richard Hestilow <hestilow ximian com>
-
- * gconf-property-editor.c:
- (gconf_property_editor_new_option_menu_with_enum):
- (gconf_property_editor_new_enum_toggle): Added.
- (gconf_property_editor_new): Accept custom arguments from the
- editor "subclass".
- (gconf_property_editor_class_init): Add arguments "data"
- and "data-free-cb", for custom "subclass" data.
- (gconf_property_editor_finalize): Free custom data.
- (*_new): Add NULL at the end of gconf_property_editor_new.
- (guard_value_changed, peditor_widget_set_guard): Use the
- enum->boolean mapping if the gconf value is a string.
-
-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.
-
-2002-02-27 Kjartan Maraas <kmaraas gnome org>
-
- * capplet-util.c: s/PACKAGE/GETTEXT_PACKAGE/g
-
-2002-02-12 Lauris Kaplinski <lauris ximian com>
-
- * gconf-property-editor.c (peditor_font_value_changed): Kill warning
-
-2002-02-10 Richard Hestilow <hestilow ximian com>
-
- * gconf-property-editor.[ch]: Added font editor.
-
-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.
-
-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
-
-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
-
-2001-12-20 Bradford Hovinen <hovinen ximian com>
-
- * gconf-property-editor.c: Eliminate compiler warnings
-
- * capplet-util.c: Eliminate compiler warnings
-
- * 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
-
-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
- (peditor_string_value_changed): Free the value created from
- conversion
- (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
-
- * 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
-
- * 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
-
-2001-12-18 Bradford Hovinen <hovinen ximian com>
-
- * capplet-util.h: Don't #include bonobo*.h
-
- * gconf-property-editor.c (peditor_string_widget_changed): Use
- actual signature for the changed signal Use gconf_client rather
- than gconf_engine
- (gconf_property_editor_set_prop): Use weak_ref rather than destroy
- signal
- (peditor_int_range_value_changed)
- (peditor_int_range_widget_changed, gconf_peditor_new_int_range):
- Implement
-
-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.
- (peditor_select_menu_widget_changed): Use
- gtk_option_menu_get_history
- (peditor_select_menu_widget_changed): Accept option_menu as
- parameter
- (gconf_peditor_new_select_menu): Connect changed signal rather
- than activate signal on the menu items
- (gconf_property_editor_get_key): Implement
- (peditor_color_widget_changed): Use correct signature for the
- signal handler
- (peditor_select_menu_value_changed): Use
- gtk_option_menu_set_history
- (guard_value_changed, gconf_peditor_widget_set_guard): Implement
- (peditor_string_widget_changed): Work correctly with multiple
- callback signatures
- (gconf_peditor_new_string): Use changed signal
-
-2001-12-08 Bradford Hovinen <hovinen ximian com>
-
- * gconf-property-editor.c (peditor_*_widget_changed): Don't call
- gconf_value_free
-
-2001-12-07 Bradford Hovinen <hovinen ximian com>
-
- * gconf-property-editor.c (gconf_property_editor_class_init): Use
- correct ordering of setup
- (gconf_peditor_new_*): Terminate the parameter list passed to
- g_object_new with NULL
- (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
- (peditor_*_value_changed): Make sure value is non-NULL
-
-2001-11-03 Bradford Hovinen <hovinen ximian com>
-
- * Makefile.am (libcommon_a_SOURCES): Added gconf-property-editor.[ch]
-
-2001-10-27 Bradford Hovinen <hovinen ximian com>
-
- * capplet-util.c (get_default_moniker): Switch to gconf: moniker
- (capplet_init): Remove legacy file hack
-
-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
-
-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-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
-
-2001-09-24 Bradford Hovinen <hovinen ximian com>
-
- * capplet-util.c (legacy_is_modified): Improved error checking and
- cleaned up the logic a bit
-
-2001-09-14 Bradford Hovinen <hovinen ximian com>
-
- * capplet-util.c (set_moniker_cb): Don't call setup_cb after the
- first time
-
-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
-
-2001-08-20 Bradford Hovinen <hovinen ximian com>
-
- * capplet-util.c (get_default_moniker): Update moniker being used
-
-2001-07-30 Bradford Hovinen <hovinen ximian com>
-
- * capplet-util.c (capplet_init): Don't sync if we need legacy
- values
- (capplet_init): Call setup_session_mgmt if --apply or
- --init-session-settings was passed
-
-2001-07-27 Bradford Hovinen <hovinen ximian com>
-
- * RELEASE : 1.5.2
-
-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
-
-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.
-
-2001-07-24 Richard Hestilow <hestilow ximian com>
-
- * capplet-util.c: Remove debugging cruft.
- (capplet_init): Check for legacy with --init-session-settings too.
-
-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.
-
-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
-
-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
-
-2001-07-20 Chema Celorio <chema celorio com>
-
- * RELEASE : 1.5.0
-
-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.
-
-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
-
-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
-
-2001-07-18 Richard Hestilow <hestilow ximian com>
-
- * capplet-util.[ch]: Revert my last proxy-related change.
-
-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.
-
-2001-07-17 Bradford Hovinen <hovinen ximian com>
-
- * capplet-util.c (capplet_init): Support --init-session-settings
- for compatibility reasons
- (setup_session_mgmt): Implement. Make sure capplet runs the next
- time the user logs in
- (capplet_init): Call setup_session_mgmt for --get-legacy and
- standard execution
- (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): 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
- (get_factory_name):
- (get_default_moniker):
- (get_property_name): Use correct names when the full path was
- specified for the executable
-
- * 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
-
-2001-07-14 Carlos Perello Marin <carlos gnome-db org>
-
- * .cvsignore: ssshhhh
-
-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
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
diff --git a/capplets/default-applications/ChangeLog b/capplets/default-applications/ChangeLog
index e0fd159..3d2a7ae 100644
--- a/capplets/default-applications/ChangeLog
+++ b/capplets/default-applications/ChangeLog
@@ -1,1078 +1,3 @@
-2009-04-06 Matthias Clasen <mclasen redhat com>
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
- * gnome-da-capplet.c: Prevent the custom entries from getting out of
- sync with their backing GConf entry. (#578089)
-
-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
-
-==================== 2.25.90 ====================
-
-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
-
-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
-
-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)
-
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-==================== 2.25.1 ====================
-
-Fri Oct 24 18:22:22 2008 Søren Sandmann <sandmann redhat com>
-
- * gnome-da-capplet.c (main): Use new capplet_init() function
-
-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.
-
-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()
-
-2008-10-10 Bastien Nocera <hadess hadess net>
-
- * gnome-default-applications.xml.in: Fix build failure caused by last
- commit
-
-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
-
-==================== 2.24.0.1 ====================
-
-2008-09-03 Jens Granseuer <jensgr gmx net>
-
- * gnome-at-session.desktop.in.in: use a11y icon instead of searchtool
- (bug #550742)
-
-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)
-
-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)
-
-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)
-
-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
-
-2008-07-15 Jens Granseuer <jensgr gmx net>
-
- reviewed by: <delete if not using a buddy>
-
- * Makefile.am:
- * gnome-da-xml.c: (gnome_da_xml_load_list):
- * gnome-default-applications.pc.in:
-
-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)
-
-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>.
-
-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.
-
-==================== 2.23.2 ====================
-
-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)
-
-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)
-
-2008-02-09 Jens Granseuer <jensgr gmx net>
-
- * gnome-default-applications.xml.in: add support for Konsole, too
- (bug #515386)
-
-2008-02-09 Jens Granseuer <jensgr gmx net>
-
- Patch by: Nicolas Valcárcel
-
- * gnome-default-applications.xml.in: add support for Terminator
- console (bug #515366)
-
-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)
-
-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)
-
-2007-12-06 Jens Granseuer <jensgr gmx net>
-
- Patch by: Chris Jones
-
- * gnome-default-applications.xml.in: sok is now called onBoard (bug
- #499328)
-
-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)
-
-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)
-
-2007-10-31 Kjartan Maraas <kmaraas gnome org>
-
- * Makefile.am: Distcheck fixes.
-
-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)
-
-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)
-
-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)
-
-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)
-
-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.
-
-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)
-
-2007-08-01 Jens Granseuer <jensgr gmx net>
-
- * gnome-at-commandline.in.in: don't use '==', and improve
- portability with empty strings
-
-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-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)
-
-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
-
-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)
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * default-applications-accessibility.desktop.in.in: renamed Bugzilla
- product.
-
-2007-04-23 George Kraft IV <gk4 austin ibm com>
-
- * gnome-da-applet.c: better icons for A11Y categories.
-
-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.
-
-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
-
-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.
-
-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.
-
-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.
-
-2007-02-03 Jens Granseuer <jensgr gmx net>
-
- * Makefile.am: fix DATADIR define
-
-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.
-
-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.
-
-2007-01-17 Thomas Wood <thos gnome org>
-
- * default-applications.desktop.in.in: Move Preffered Applications
- capplet from SystemSettings to PersonalSettings
-
-2006-12-17 Colin Leroy <colin colino net>
-
- * gnome-default-applications.xml.in: add support for Claws Mail (aka
- Sylpheed-Claws). Closes bug #386771.
-
-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.
-
-2006-12-17 Loïc Minier <lool+gnome via ecp fr>
-
- * gnome-default-applications.xml.in: add support for Iceweasel and
- Icedove. Closes bug #379085.
-
-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.
-
-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.
-
-2006-07-23 Sebastien Bacher <seb128 debian org>
-
- * default-applications.desktop.in.in: don't list the Application
- category, patch by Vincent Fretin <vincent fretin gmail com>
- (Closes: #344321)
-
-2006-05-09 Daniel Holbach <dholbach ubuntu com>
-
- * gnome-da-capplet.c: (close_cb): update help section name. Closes
- bug #340032.
-
-2006-05-09 Luca Cavalli <lcavalli cvs gnome org>
-
- * gnome-default-applications.xml.in: remove unnecessary
- gnome-terminal command line parameter. Closes bug #336700.
-
-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.
-
-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.
-
-2006-03-12 Luca Cavalli <loopback slackit org>
-
- * gnome-da-capplet.c: (terminal_checkbutton_toggled_cb): remove
- double gconf value setting. Closes bug #334331.
-
-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.
-
-2006-03-01 Luca Cavalli <loopback slackit org>
-
- * gnome-da-capplet.c: (screen_changed_cb), (show_dialog): remove two
- unused variables. Closes bug #332973.
-
-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.
-
-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.
-
-2006-02-27 Glynn Foster <glynn foster sun com>
-
- * gnome-default-applications.xml.in: Fix typos.
-
-2006-02-27 Fryderyk Dziarmagowski <freetz pld-linux org>
-
- * gnome-default-applications.xml.in: fix Sylpheed Claws executable
- name. Closes part of bug #332659.
-
-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.
-
-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.
-
-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.
-
-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.
-
-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.
-
-2006-01-17 Luca Cavalli <loopback slackit org>
-
- * gnome-default-applications.xml.in: fixed Thunderbird command
- line parameter. Closes bug #326808.
-
-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.
-
-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.
-
-2006-01-16 Sebastien Bacher <seb128 debian org>
-
- * Makefile.am: fixed the dist
-
-2006-01-16 Sebastien Bacher <seb128 debian org>
-
- * gnome-da-capplet.c: (show_dialog): fixes some errors with the path
-
-2006-01-16 Sebastien Bacher <seb128 debian org>
-
- * gnome-da-capplet.c: (show_dialog): use the correct .glade
-
-2006-01-16 Sebastien Bacher <seb128 debian org>
-
- * Makefile.am: fix gladedir use
-
-2006-01-16 Sebastien Bacher <seb128 debian org>
-
- * Makefile.am: fix a name
-
-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
- gnome-control-center build system
-
-2006-01-03 pholie <golierr gmail com>
-
- Fixes bug #324629
-
- * gnome-default-applications-properties-structs.c: added Opera to
- list of default browsers.
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-default-applications-properties-structs.c: Mark the
- structs static.
-
-2005-10-20 Colin Leroy <colin colino net>
-
- * gnome-default-applications-properties-structs.c: added
- Sylpheed Claws to the list of possible mailers.
-
-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).
-
-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).
-
-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).
-
-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).
-
-2005-01-02 Sebastien Bacher <seb128 debian org>
-
- * gnome-default-applications-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-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).
-
-2004-11-26 Sebastien Bacher <seb128 debian org>
-
- * gnome-default-applications-properties.glade: changed a mnemonic to
- fix #144343.
-
-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.
-
-2004-11-26 Michael Terry <mike mterry name>
-
- * gnome-default-applications-properties.glade: Simplify some strings
- and add a window icon per bug #98918.
-
-2004-11-09 Mark McLoughlin <mark skynet ie>
-
- * Makefile.am: install .desktop file in $(datadir)/applications.
-
- * default-applications.desktop.in: add OnlyShowIn=GNOME;
-
-2004-10-21 J.H.M. Dassen (Ray) <jdassen debian org>
-
- * gnome-default-applications-properties-structs.c: Added Thunderbird to
- the mail clients.
-
-2004-10-21 Sebastien Bacher <seb128 debian org>
-
- * gnome-default-applications-properties.c: (read_browser),
- (read_mailer):
- don't crash if the browser list or the mailer list is empty
- (Closes: #151672).
-
-2004-10-17 J.H.M. Dassen (Ray) <jdassen debian org>
-
- * gnome-default-applications-properties-structs.c:
- * 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
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-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).
-
-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.
-
-2004-10-12 J.H.M. Dassen (Ray) <jdassen debian org>
-
- * gnome-default-applications-properties-structs.c: Added Mozilla
- Firefox, Debian's "sensible-browser" and Debian's
- "x-terminal-emulator"; corrected typo in "w3m" binary name.
-
-2004-08-20 Frederic Crozat <fcrozat mandrakesoft com>
-
- * gnome-default-applications-properties.c: (create_dialog):
- Use themed icon for WM hint.
-
-2004-07-13 David Sedeño <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
-
-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
-
-2004-04-15 Jody Goldberg <jody gnome org>
-
- * Release 2.6.1
-
-2004-04-06 Andrew Sobala <aes gnome org>
-
- * gnome-default-applications-properties-structs.c:
- add evo 1.5 and 1.6 to the list
-
-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-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.
-
-2004-02-12 Mark McLoughlin <mark skynet ie>
-
- * gnome-default-applications-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-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.
-
-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
-
-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.
-
-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
-
- * gnome-default-applications-properties-structs.c
- (possible_terminals): remove help browsers. We basically only
- support yelp at this point.
-
-2003-07-19 Dennis Cranston <dennis_cranston at yahoo com>
-
- * gnome-default-applications-properties.c: Added a window icon
- to the capplet.
-
-2003-07-17 Dennis Cranston <dennis_cranston at yahoo com>
-
- * gnome-default-applications-properties.glade: Very minor
- HIGification of widget padding.
-
-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
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-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>
-
- * Release 2.3.3
-
-2003-05-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.1
-
-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.
-
-Tue Feb 4 17:09:18 2003 Jonathan Blandford <jrb redhat com>
-
- * Release 2.2.0.1
-
-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
-
-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-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-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>
-
- * default-applications.desktop.in: Fix the desktop file so that it
- validates.
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-2002-05-24 Satyajit Kanungo <satyajit kanungo wipro com>
-
- * gnome-default-applications-properties.c : Changed the help file
- link to get the help document from user-guide.
-
-2002-05-26 Jody Goldberg <jody gnome org>
-
- * file-types-capplet.c (cb_file_type_dialog_response) : Improve
- handling of help failures.
-
-2002-05-26 Jody Goldberg <jody gnome org>
-
- * gnome-default-applications-properties.c (dialog_response) : improve
- handling of help failures.
-
-Sun May 26 11:33:26 2002 Jonathan Blandford <jrb gnome org>
-
- * gnome-default-applications-properties.c (main): use APPID
- instead of argv[0]
-
-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.
-
-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>)
-
-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
-
-Wed Apr 10 18:05:13 2002 Jonathan Blandford <jrb gnome org>
-
- * default-applications.desktop.in (Exec): s/gnome2/gnome
-
-2002-03-28 Richard Hestilow <hestilow ximian com>
-
- * gnome-default-applications-properties.glade: Make dialog title
- match .desktop label.
-
-2002-03-28 Lauris Kaplinski <lauris ximian com>
-
- * gnome-default-applications-properties.c (setup_peditors): Fix typo
- (read_help_viewer): Rename accepts_lineno to accepts_urls to avoid confusion
- (generic_guard): Set entry to empty string initially to force 'changed'
- signal on single-item combos too
- (read_editor): Use #defined key names to avoid future typos
- (setup_peditors): Ditto
- (read_browser): Ditto
- (read_help_viewer): Ditto
- (read_terminal): Ditto
- (create_dialog): Unsensitize combos, if defaults list is empty
-
-2002-03-07 Lauris Kaplinski <lauris ximian com>
-
- * gnome-default-applications-properties.c (generic_guard): Set focus
- and emit signal here, instead of mnemonic handler
- (create_dialog): Set data on radio widgets, to be used for focus/entry
- tracking. Do not connect mnemonic_activate signals, as these are
- handled by toggles already.
-
-2002-02-27 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-default-applications-properties.c: s/PACKAGE/GETTEXT_PACKAGE/g
-
-2002-02-17 Seth Nickell <snickell stanford edu>
-
- * default-applications.desktop.in:
-
- Change menu name to "Preferred Applications" which faired
- better in user testing.
-
-2002-02-11 Seth Nickell <snickell stanford edu>
-
- * gnome-default-applications-properties-structs.c:
- * gnome-default-applications-properties.c: (read_editor),
- (setup_peditors), (read_browser), (browser_setup_custom),
- (value_changed_cb), (dialog_response), (create_dialog):
- * gnome-default-applications-properties.glade:
-
- Convert to instant apply, change to using property editors
- where convenient.
-
-2002-02-10 Richard Hestilow <hestilow ximian com>
-
- * Convert to apply/close, and commit a UI string
- fix from fflewddur dropline net
-
-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.
-
-2002-02-04 Lauris Kaplinski <lauris ximian com>
-
- * gnome-default-applications-properties.c (initialize_default_applications):
- Use glib methods instead of deprecated libgnome ones
- (read_editor): Do not crash on NULL value
- (read_help_viewer): Ditto
- (read_browser): Ditto
-
-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.
-
-2002-01-14 Bradford Hovinen <hovinen ximian com>
-
- * Makefile.am (bin_PROGRAMS): Renamed binary
- gnome2-default-applications-properties
- (gnome2_default_applications_properties_SOURCES): Update
- (EXTRA_DIST): Put source file here
-
-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
-
-2001-12-20 Bradford Hovinen <hovinen ximian com>
-
- * Makefile.am: Clean up
-
- * default-application-properties.c (main): Call gtk_main, not
- capplet_gtk_main
-
- * interface.c: Don't #include capplet-widget.h
-
-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.
-
-2001-12-08 Richard Hestilow <hestilow ximian com>
-
- * Port to GConf.
-
-2001-12-01 Richard Hestilow <hestilow ximian com>
-
- * Initial GNOME2 port.
-
-2001-08-18 Abel Cheung <maddog linux org hk>
-
- * interface.c (edit_create): Fixed a string (cut 'n paste is source
- of all evil)
-
-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-25 Chema Celorio <chema celorio com>
-
- * Makefile.am: remove the DESKTOP_IN_RULE and copy the sed here
-
-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.
-
-2001-07-20 Chema Celorio <chema celorio com>
-
- * RELEASE : 1.5.0
-
-2001-07-19 Bradford Hovinen <hovinen ximian com>
-
- * Makefile.am: Remove SUBDIRS
-
-2001-07-18 Chema Celorio <chema celorio com>
-
- * default-applications.desktop.in.in (Exec): use the right binary name
-
- * Makefile.am (INCLUDES): we are not using GNOMESYSCONFDIR. remove
-
-2001-07-17 Chema Celorio <chema celorio com>
-
- * Makefile.am (SUBDIRS): clean
-
-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
-
-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)
-
-2001-07-16 Richard Hestilow <hestilow ximian com>
-
- * Makefile.am: Fix typo in install-data-local.
-
-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.
diff --git a/capplets/display/ChangeLog b/capplets/display/ChangeLog
index cecff37..3d2a7ae 100644
--- a/capplets/display/ChangeLog
+++ b/capplets/display/ChangeLog
@@ -1,569 +1,3 @@
-2009-05-06 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (rebuild_current_monitor_label): Make the label
- of the heading for the current monitor be explicitly black. We
- don't want to follow the theme's colors, as the label is always
- shown against a light pastel background --- using the theme's
- colors makes the label hard to read on "inverse" themes. Fixes
- the gnome-control-center part of bug #556050.
-
-2009-04-11 Matthias Clasen <mclasen redhat com>
-
- * display-capplet.glade: Make all mnemonics work. (#578572)
-
-2009-03-30 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (ensure_current_configuration_is_saved): Save
- monitors.xml with the current configuration before changing it, so
- that we'll have something to go back to even on a first-time login
- (when monitors.xml doesn't exist).
-
-2009-03-20 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (begin_version2_apply_configuration): There is no need
- to check the result of dbus_g_proxy_new_for_name(); it can't fail.
- (begin_version1_apply_configuration): Likewise.
- (apply_configuration_returned_cb): Fix a potential leak of the
- proxy in the error case.
- (apply): Simplify a bit, now that the initial call to
- begin_version2_apply_configuration() can't fail.
-
-2009-03-19 Federico Mena Quintero <federico novell com>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=576006 - The
- confirmation dialog from the RANDR plugin can appear behind the
- window from gnome-display-properties. This also depends on a
- change to gnome-settings-daemon, although it will work with older
- g-s-d as well.
-
- * xrandr-capplet.c (apply): Call the new DBus API for
- ApplyConfiguration in org.gnome.SettingsDaemon.XRANDR_2, or the
- old one if that fails.
- (begin_version2_apply_configuration): New helper function; calls
- the new API.
- (begin_version1_apply_configuration): New helper function; calls
- the old API.
- (apply_configuration_returned_cb): If the new API is not
- available, try the old one. This makes us compatible with older
- versions of gnome-settings-daemon.
- (error_message): Allow a NULL secondary_text.
-
-2009-03-11 Federico Mena Quintero <federico novell com>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=574865 - Crash when
- refreshing the RANDR configuration.
-
- * xrandr-capplet.c (select_current_output_from_dialog_position):
- Always set app->current_output; otherwise we could be left with a
- dangling pointer to the old current_output (which is invalid after
- refreshing the current_configuration).
- (on_screen_changed): Null out the current_output when we get a new
- RANDR configuration, as it will become obsolete as soon as we free
- the old configuration.
-
-2009-03-11 Gabor Kelemen <kelemeng gnome hu>
-
- * xrandr-capplet.c: Make the strings of the Rotation dialog appear
- translated. Bug #574693.
-
-==================== 2.25.92 ====================
-
-2009-02-21 Jens Granseuer <jensgr gmx net>
-
- * xrandr-capplet.c: (error_message): GTK_DIALOG_NO_SEPARATOR cannot be
- used with GtkMessageDialog
-
-2009-02-19 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (paint_output): Make "on" monitors have black
- text, to be consistent with GnomeRRLabeler's little labels.
-
-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)
-
-2009-02-05 Federico Mena Quintero <federico novell com>
-
- https://bugzilla.novell.com/show_bug.cgi?id=472226 - Don't block
- the display capplet's GUI while changing the RANDR configuration.
-
- * xrandr-capplet.c (struct App): Move the D-bus fields into here,
- outside of apply().
- (apply): Use an async D-bus call to gnome-settings-daemon so we
- don't block the GUI. Keep the GUI desensitized while the call is
- happening.
-
-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...
-
-==================== 2.25.90 ====================
-
-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)
-
-2008-12-18 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (get_output_for_window): Include "off" outputs
- in the intersected rectangles. This makes the capplet not select
- a new output when changing virtual desktops.
-
-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.
- (rebuild_resolution_combo): Desensitize the resolution combo when
- the output is off. Don't add an "Off" item to it, either.
-
-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.
-
-==================== 2.25.3 ====================
-
-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.
-
-2008-12-16 Frederic Peters <fpeters 0d be>
-
- * xrandr-capplet.c: (select_current_output_from_dialog_position):
- Declare variable, fix build.
-
-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.
-
-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.
-
-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.
-
-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.
-
-2008-12-12 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (on_clone_changed): If we turn off "mirror
- screens", and if the monitors are still overlapping, lay out the
- monitors from left to right so that the user will know that all
- the monitors are present. Previously you had to know that you had
- to un-overlap them by hand.
- (lay_out_outputs_horizontally): New function.
-
-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.
- (gnome_randr_atom): Removed.
- (on_detect_displays): Display an error if detecting the displays fails.
- (run_application): Display error messages.
-
-==================== 2.25.2 ====================
-
-==================== 2.25.1 ====================
-
-Wed Oct 8 21:20:21 2008 S?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.
-
-Wed Oct 8 21:15:04 2008 S?ren Sandmann <sandmann redhat com>
-
- * xrandr-capplet.c: Make use of new clone mode API in
- gnome-desktop
-
-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.
-
-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)
-
-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)
-
-==================== 2.24.0.1 ====================
-
-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)
-
-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
-
-2008-08-13 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (paint_output): Instead of using hard-coded
- colors for the rectangles that represent the monitors, get the
- colors from the GnomeRRLabeler.
-
-2008-08-13 Federico Mena Quintero <federico novell com>
-
- * xrandr-capplet.c (on_screen_changed): Create a GnomeRRLabeler
- based on the current screen configuration, so that the physical
- monitors will be labeled while the capplet is up.
- (struct App): New field "labeler".
-
-2008-08-11 Jens Granseuer <jensgr gmx net>
-
- * xrandr-capplet.c: (run_application): fail gracefully if we cannot
- get a screen
-
-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
-
-2008-08-08 Jens Granseuer <jensgr gmx net>
-
- * xrandr-capplet.c: (run_application), (main): don't leak the
- application or the GladeXML
-
-Tue Aug 5 03:19:23 2008 S?ren Sandmann <sandmann redhat com>
-
- * xrandr-capplet.c (paint_output): Draw rotated outputs rotated.
-
-Tue Jul 29 01:35:31 2008 S?ren Sandmann <sandmann redhat com>
-
- * xrandr-capplet.c: Add a check box to turn on and off display icon.
-
-Tue Jul 15 18:48:43 2008 S?ren Sandmann <sandmann redhat com>
-
- * xrandr-capplet.c: Don't allow dragging when there is only one
- connected monitor.
-
-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.
-
-2008-06-18 Jens Granseuer <jensgr gmx net>
-
- * scrollarea.h: fix cairo include
-
-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
-
-==================== 2.23.2 ====================
-
-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)
-
-2007-10-28 Jens Granseuer <jensgr gmx net>
-
- * main.c: (display_rotation_from_text), (create_rotate_menu): readd gettext
- macro that accidentally got stripped
-
-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
-
-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
-
-2007-10-27 Jens Granseuer <jensgr gmx net>
-
- * main.c: (run_revert_dialog), (main): fix string capitalization
-
-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
-
-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.
-
-2007-06-26 Michael Terry <mike mterry name>
-
- * Makefile.am, main.c, display-properties.desktop.in.in: Use
- icon theme instead of global pixmaps dir for app icon. Closes
- bug #450777.
-
-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.
-
-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...
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * display-properties.desktop.in.in: renamed Bugzilla product.
-
-2007-03-23 Jens Granseuer <jensgr gmx net>
-
- * main.c: (show_resolution): add 720x576 (PAL) to the list of valid
- resolutions. Closes bug #325548.
-
-2007-03-21 Jens Granseuer <jensgr gmx net>
-
- * main.c: uppercase the rotation options. Closes bug #410959.
-
-2007-03-01 Jens Granseuer <jensgr gmx net>
-
- * main.c: (create_dialog): fix double-free reported by Sandino
- Flores-Moreno. Closes bug #413352.
-
-2007-01-29 Kjartan Maraas <kmaraas gnome org>
-
- * main.c: Mark a struct static.
-
-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.
-
-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.
-
-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>.
-
-2006-08-07 Rodrigo Moya <rodrigo novell com>
-
- Fixes #348838
-
- * display-properties.desktop.in.in: Fixed GNOME Bugzilla fields.
-
-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)
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * main.c: Mark some functions static.
-
-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.
-
-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).
-
-2004-11-09 Mark McLoughlin <mark skynet ie>
-
- * Makefile.am: install .desktop file in $(datadir)/applications.
-
- * display-properties.desktop.in: add OnlyShowIn=GNOME;
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-2004-06-10 David Sede?o <david alderia com>
-
- 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.
-
-2004-06-09 David Sede?o <david alderia com>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=137579
- * main.c (main) : Put title to the confirmation dialog box
-
-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
-
-2004-04-15 Jody Goldberg <jody gnome org>
-
- * Release 2.6.1
-
-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
-
-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-03-02 Fernando Herrera <fherrera onirica com>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=125315
- * main.c: (cb_dialog_response): Point help to the right section
-
-2004-03-02 Jody Goldberg <jody gnome org>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=135908
- * main.c (apply_config) : restart the screensaver
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
diff --git a/capplets/keybindings/ChangeLog b/capplets/keybindings/ChangeLog
index ae7be49..3d2a7ae 100644
--- a/capplets/keybindings/ChangeLog
+++ b/capplets/keybindings/ChangeLog
@@ -1,859 +1,3 @@
-2009-04-02 Jens Granseuer <jensgr gmx net>
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
- * 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)
-
-==================== 2.26.0 ====================
-
-2009-03-06 Jens Granseuer <jensgr gmx net>
-
- * gnome-keybinding-properties.glade: fix mnemonics conflict on the
- custom shortcut window
-
-==================== 2.25.92 ====================
-
-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)
-
-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)
-
-==================== 2.25.90 ====================
-
-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
-
-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
-
-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
-
-2009-01-25 Jens Granseuer <jensgr gmx net>
-
- * gnome-keybinding-properties.c: (add_custom_shortcut): fix argument
- type warnings by casting to appropriate type
-
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-
-2008-11-11 Matthias Clasen <mclasen redhat com>
-
- * gnome-keybinding-properties.c: Respect the
- /desktop/gnome/keybindings/allowed_keys key.
-
-==================== 2.25.1 ====================
-
-Sun Oct 26 18:06:45 2008 Søren Sandmann <sandmann redhat com>
-
- * gnome-keybinding-properties.c (cb_dialog_response): Make it
- compile again.
-
-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.
-
-==================== 2.24.0.1 ====================
-
-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)
-
-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)
-
-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-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
-
-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
-
-2008-05-29 William Jon McCann <jmccann redhat com>
-
- * eggcellrendererkeys.c (egg_cell_renderer_keys_class_init):
- Don't use deprecated GTK+ symbol.
-
-==================== 2.23.2 ====================
-
-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
-
-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)
-
-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)
-
-2008-03-29 Jens Granseuer <jensgr gmx net>
-
- * eggaccelerators.c: (egg_accelerator_parse_virtual): sync with
- gnome-settings-daemon
-
-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
-
-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)
-
-2008-03-14 Jens Granseuer <jensgr gmx net>
-
- * gnome-keybinding-properties.c: (append_keys_to_tree_from_file):
- remove debugging output
-
-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)
-
-2007-10-31 Kjartan Maraas <kmaraas gnome org>
-
- * Makefile.am: Distcheck fixes.
-
-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)
-
-2007-06-14 Jens Granseuer <jensgr gmx net>
-
- * gnome-keybinding-properties.c: (setup_dialog): fix GConf
- notification
-
-2007-05-02 Jens Granseuer <jensgr gmx net>
-
- * gnome-keybinding-properties.c: (main): add g_thread_init as
- required by glib
-
-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)
-
-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)
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * keybinding.desktop.in.in: renamed Bugzilla product.
-
-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-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)
-
-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
-
-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)
-
-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
-
-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)
-
-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
-
-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)
-
-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)
-
-2007-02-02 Jens Granseuer <jensgr gmx net>
-
- * gnome-keybinding-properties.c: (accel_edited_callback): blacklist
- numbers, space, and tab as accels (fixes #359092)
-
-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)
-
-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)
-
-2007-01-21 Thomas Wood <thos gnome org>
-
- * keybinding.desktop.in.in: Corrected category entry
-
-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.
-
-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.
-
-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.
-
-2006-07-27 Gary Coady <gary lyranthe org>
-
- Fixes #333576
-
- * gnome-keybinding-properties.c (accel_edited_callback): don't assume
- defines are contiguous.
-
-2006-07-23 Sebastien Bacher <seb128 debian org>
-
- * keybinding.desktop.in.in: don't list the Application category,
- patch by Vincent Fretin <vincent fretin gmail com> (Closes: #344321)
-
-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-01-30 Rodrigo Moya <rodrigo novell com>
-
- * actions/acme.h:
- * gnome-keybinding-properties.c: reverted commit from 2006-01-11.
-
-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)
-
-2006-01-11 Sebastien Bacher <seb128 debian org>
-
- * gnome-keybinding-properties.c:
- drop the keysym/keycode binding code, it's an hack and
- doesn't work fine, patch by Bastien Nocera <hadess hadess net>
- (Closes: #133815)
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * eggcellrendererkeys.c: (egg_cell_renderer_keys_set_accelerator):
- Remove some unused code.
- * gnome-keybinding-properties.c: (should_show_key): Mark some
- arrays static.
-
-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-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).
-
-2005-01-02 Sebastien Bacher <seb128 debian org>
-
- * gnome-keybinding-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-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)
-
-2004-11-09 Mark McLoughlin <mark skynet ie>
-
- * Makefile.am: install .desktop file in $(datadir)/applications
-
- * keybinding.desktop.in: add OnlyShowIn=GNOME;
-
-2004-10-17 Vincent Untz <vincent vuntz net>
-
- * gnome-keybinding-properties.c: add the keybinding to launch a
- terminal
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-2004-08-20 Frederic Crozat <fcrozat mandrakesoft com>
-
- * gnome-keybinding-properties.c: (setup_dialog):
- Use themed icon for WM hint.
-
-2004-07-23 David Sede?o <david alderia com>
-
- http://bugzilla.gnome.org/show_bug.cgi?id=148208
- * gnome-keybinding-properties.glade: Expand to false to the hbox1
-
-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
-
-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
-
-2004-04-15 Jody Goldberg <jody gnome org>
-
- * Release 2.6.1
-
-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-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.
-
-2004-04-01 Jody Goldberg <jody gnome org>
-
- * Release 2.6.0.3
-
-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'
-
-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>
-
-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-22 Jody Goldberg <jody gnome org>
-
- * gnome-keybinding-properties.c (reload_key_entries) : split the
- obvious media keys into a distinct category. Call it 'Sound' to
- avoid string freeze problems.
-
-2004-03-11 Jody Goldberg <jody gnome org>
-
- * Release 2.5.4
-
-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-13 Jody Goldberg <jody gnome org>
-
- * Release 2.5.3
-
-2004-02-12 Mark McLoughlin <mark skynet ie>
-
- * gnome-keybinding-properties.c: (cb_dialog_response): Update help link
- to point to user-guide.xml
-
-2004-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-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.
-
-2003-10-28 Jody Goldberg <jody gnome org>
-
- * Release 2.5.0
-
-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.
-
-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.
-
-2003-07-11 Dennis Cranston <dennis_cranston at yahoo com>
-
- * gnome-keybinding-properties.glade: Minor HIG widget padding
- adjustments.
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-07-03 Kjartan Maraas <kmaraas gnome org>
-
- * eggcellrendererkeys.c: (egg_cell_renderer_keys_set_accelerator):
- Merge leak fix from stable.
-
-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 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.
-
-Tue Feb 4 17:09:18 2003 Jonathan Blandford <jrb redhat com>
-
- * Release 2.2.0.1
-
-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)
-
-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
-
-Mon Jan 13 15:14:22 2003 Jonathan Blandford <jrb redhat com>
-
- * gnome-keybinding-properties.c (main): gnome_theme_init() added.
-
-2003-01-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-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)
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-2002-12-04 Havoc Pennington <hp pobox com>
-
- * gnome-keybinding-properties.glade: set all the spacings to 12 as
- per HIG
-
-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
-
-2002-11-23 Jody Goldberg <jody gnome org>
-
- * Release 2.1.3
-
-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.
-
-2002-11-02 Jody Goldberg <jody gnome org>
-
- * Release 2.1.2
-
-2002-09-27 Jody Goldberg <jody gnome org>
-
- * gnome-keybinding-properties.c (cb_check_for_uniqueness) : new.
- (accel_edited_callback) : don't let a user enter duplicate
- accelerators for different actions.
-
-Fri Nov 1 17:46:06 2002 Jonathan Blandford <jrb gnome org>
-
- * gnome-keybinding-properties.c: move to use gnome-theme-info
- instead of theme-common.
-
-2002-10-21 Jody Goldberg <jody gnome org>
-
- * Release 2.1.1
-
-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
-
-2002-10-01 Jody Goldberg <jody gnome org>
-
- * Release 2.1.0.1
-
-2002-08-21 Deepa Natarajan <deepa natarajan wipro com>
-
- * gnome-keybinding-properties.c: Added [un]maximize metacity bindings.
-
-2002-08-21 Jody Goldberg <jody gnome org>
-
- * Release 2.1.0
-
-Mon Aug 19 17:54:07 2002 Jonathan Blandford <jrb redhat com>
-
- * gnome-keybinding-properties.c (metacity_key_list): fix bindings
- to match metacity.
-
-2002-08-15 Jody Goldberg <jody gnome org>
-
- * gnome-keybinding-properties.c : Add a pile of missing metacity
- bindings.
-
-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.
-
-2002-08-08 Seth Nickell <snickell stanford edu>
-
- * gnome-keybinding-properties.glade:
-
- Set border widths correctly so things align nicely.
-
-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-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.
-
-2002-06-21 Stephen Browne <stephen bronwe sun com>
-
- * gnome-keybinding-properties.c : moved metacity detection
- out of here and into a more generic API in capplets/common/wm-common.c
-
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-2002-05-29 Jody Goldberg <jody gnome org>
-
- * gnome-keybinding-properties.c (cb_dialog_response) : fix return type.
-
-2002-05-28 Satyajit Kanungo <satyajit kanungo wipro com>
-
- * gnome-keybinding-properties.glade : Added a help button
-
- * gnome-keybinding-properties.c : Put the help callback to get
- the help document from user-guide.
-
-
-Sun May 26 11:01:28 2002 Jonathan Blandford <jrb gnome org>
-
- * gnome-keybinding-properties.c (main): use APPID instead of
- argv[0]
-
-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.
-
-Tue May 21 19:36:13 2002 Jonathan Blandford <jrb redhat com>
-
- * gnome-keybinding-properties.c (accel_edited_callback):
- handle the new eggcellrendererkeys signal.
-
-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.
-
-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.
-
-2002-05-10 Jody Goldberg <jody gnome org>
-
- * gnome-keybinding-properties.glade : Merge in the atk patch.
-
-2002-05-09 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-keybindings-properties.c (accel_edited_callback): Mark
- a string for translation.
-
-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).
-
-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.
-
-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.
-
-2002-04-26 Havoc Pennington <hp pobox com>
-
- * gnome-keybinding-properties.c (append_keys_to_tree): fix
- non-use of accessor functions.
-
-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.
-
-Thu Apr 18 17:56:12 2002 Jonathan Blandford <jrb redhat com>
-
- * gnome-keybinding-properties.c (theme_changed_func): handle new
- theme-changeing code.
-
-2002-04-11 Jacob Berkman <jacob ximian com>
-
- * Makefile.am (EXTRA_DIST): add pixmap
-
-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.
-
-Sat Apr 6 11:57:50 2002 Jonathan Blandford <jrb gnome org>
-
- * 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.
-
-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.
-
-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.
-
-2002-03-26 Seth Nickell <snickell stanford edu>
-
- * keybinding.desktop.in:
-
- Use "keyboard shortcuts" to match the window title
diff --git a/capplets/keyboard/ChangeLog b/capplets/keyboard/ChangeLog
index c95ab43..3d2a7ae 100644
--- a/capplets/keyboard/ChangeLog
+++ b/capplets/keyboard/ChangeLog
@@ -1,1187 +1,3 @@
-2009-06-29 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkb.c,
- gnome-keyboard-properties-xkbltadd.c: optionally load extras layouts
- from xk-c (feature of libxklavier 4.0)
-
-==================== 2.25.92 ====================
-
-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)
-
-2009-02-14 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkbltadd.c: fixed initial preview,
- http://bugzilla.gnome.org/show_bug.cgi?id=550721
- (actual patch by Matthias Clasen)
-
-2009-02-11 Matthias Clasen <mclasen redhat com>
-
- Bug 564998 â?? Visual bell settings went away
-
- * gnome-keyboard-properties-a11y.c:
- * gnome-keyboard-properties.glade: Add visual bell controls to the
- Audio Feedback dialog on the a11y tab.
-
-2009-02-07 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkbot.c, gnome-keyboard-properties.glade:
- restored (now functioning) help button in Options,
- http://bugzilla.gnome.org/show_bug.cgi?id=556952
-
-==================== 2.25.90 ====================
-
-2009-01-30 Jens Granseuer <jensgr gmx net>
-
- * gnome-keyboard-properties.glade: allow setting a repeat delay of
- up to 2 seconds (bug #569612)
-
-2009-01-16 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties.glade: hide help button in Options,
- http://bugzilla.gnome.org/show_bug.cgi?id=556952
-
-2009-01-10 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkbot.c: sort options by description
-
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-==================== 2.25.1 ====================
-
-2008-10-27 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkblt.c, gnome-keyboard-properties.glade:
- hide/show the "Default" column depending on the "layout per window"
- checkbox, http://bugzilla.gnome.org/show_bug.cgi?id=555261
-
-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
-
-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)
-
-Fri Oct 24 19:38:52 2008 Søren Sandmann <sandmann redhat com>
-
- * gnome-keyboard-properties.c: Don't include gnome.h
-
-Fri Oct 24 19:16:10 2008 Søren Sandmann <sandmann redhat com>
-
- * gnome-keyboard-properties.c (main): Remove copying of legacy settings
-
-2008-10-24 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkbot.c: Small fix - remember sorted list
- of expanders (in properties)
-
-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)
-
-2008-10-19 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkbot.c: Update group expander
- highlighting dynamically
-
-2008-10-18 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkbot.c: fixed group sorting, using group
- name as is, without formatting
-
-==================== 2.24.0.1 ====================
-
-2008-09-21 Jens Granseuer <jensgr gmx net>
-
- * gnome-keyboard-properties.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.
-
-2008-09-11 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties.glade: small UI polish by Christian
- Persch (#551871), mnemonic fixed
-
-2008-09-05 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkb.c, gnome-keyboard-properties-xkblt.c:
- using the fact that latest libxklavier returns descriptions in UTF-8,
- no need to convert in 8-bit locales
-
-2008-09-03 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkbltadd.c: chosing first variant by
- default (#550722)
-
-2008-07-27 Matthias Clasen <mclasen redhat com>
-
- * gnome-keyboard-properties.c: Revert this for now, since
- gnome-icon-theme doesn't actually ship the standard icon yet.
-
-2008-07-27 Matthias Clasen <mclasen redhat com>
-
- * gnome-keyboard-properties.c: Use standard icon name for the
- "Audio Feedback" button. (#544922)
-
-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)
-
-==================== 2.23.2 ====================
-
-2008-04-28 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-iso.c: removed unneeded file
- * gnome-keyboard-properties.glade,
- gnome-keyboard-properties-xkbltadd.c: some polish in layout and code.
- No more "statistical" highlighting for languages, second tab is
- disabled if there are no languages
-
-2008-04-27 Sergey Udaltsov <svu gnome org>
-
- * gnome-keyboard-properties-xkb.h, gnome-keyboard-properties-iso.c,
- gnome-keyboard-xkbpv.c, gnome-keyboard-properties.glade,
- gnome-keyboard-properties-xkbltadd.c, Makefile.am: Added sorting by
- language and country
-
-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
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
diff --git a/capplets/mouse/ChangeLog b/capplets/mouse/ChangeLog
index 7a61a0f..3d2a7ae 100644
--- a/capplets/mouse/ChangeLog
+++ b/capplets/mouse/ChangeLog
@@ -1,807 +1,3 @@
-==================== 2.25.90 ====================
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-==================== 2.25.1 ====================
-
-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
-
-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()
-
-==================== 2.24.0.1 ====================
-
-2008-07-08 Matthias Clasen <mclasen redhat com>
-
- Bug 545780 â?? use an existing icon
-
- * gnome-mouse-properties.c:
- * gnome-settings-mouse.desktop.in.in: Use input-mouse as icon.
-
-2008-07-08 Gerd Kohlberger <gerdk svn gnome org>
-
- * gnome-mouse-properties.glade: Decrease lower boundary of dwell
- delay to 0.2.
-
-==================== 2.23.2 ====================
-
-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)
-
-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)
-
-2008-02-29 Denis Washington <denisw svn gnome org>
-
- * gnome-mouse-properties.c: make the mouse orientation radio
- buttons usable with both mouse buttons.
-
-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)
-
-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)
-
-2008-01-25 Jens Granseuer <jensgr gmx net>
-
- * Makefile.am:
- * mouse-left.png:
- * mouse-right.png: remove obsolete icons
-
-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)
-
-2008-01-14 Denis Washington <denisw svn gnome org>
-
- * gnome-mouse-properties.glade:
- Add translation context to some labels. (Bug #509417)
-
-2008-01-14 Denis Washington <denisw svn gnome org>
-
- Integrate mousetweaks settings into the mouse capplet. (Bug #503547)
-
- * 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)
-
- * 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.
-
- * gnome-mouse-accessibility.[ch]:
- Added.
-
- * Makefile.am:
- Add gnome-mouse-accessibility.c.
-
-2007-12-06 Jens Granseuer <jensgr gmx net>
-
- * gnome-mouse-properties.glade: don't mark padding string as
- translatable (bug #502087)
-
-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.
-
-2007-07-27 Denis Washington <denisw svn gnome org>
-
- * cursor-*.pcf:
- * mouse-cursor-*.png:
- Moved to ../appearance/data/.
-
-2007-07-26 Denis Washington <denisw svn gnome org>
-
- * gnome-mouse-properties.glade:
- * gnome-mouse-poperties.c:
- Remove the Cursors tab as it's functionality is covered by the apperance
- capplet now.
-
-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
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * gnome-settings-mouse.desktop.in.in: renamed Bugzilla product.
-
-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)
-
-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
-
-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.
-
-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
-
-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.
-
-2007-01-06 Lucas Rocha <lucasr at mundo gmail com>
-
- Fixes #336286
-
- * gnome-mouse-properties.c (main): switched from popt to GOptionContext.
-
-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>.
-
-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
-
-2006-07-24 Sven Herzberg <herzi gnome-de org>
-
- * gnome-mouse-properties.c: use ngettext() correctly
-
-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)
-
-2006-07-23 Sebastien Bacher <seb128 debian org>
-
- * gnome-settings-mouse.desktop.in.in:
- don't list the Application category, list the HardwareSettings one,
- patch by Vincent Fretin <vincent fretin gmail com> (Closes: #344321)
-
-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.
-
-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"
-
-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.
-
-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.
-
-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)
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-mouse-properties.c: (setup_dialog): Mark some code static
- and remove some unused code.
-
-2005-10-24 Jens Granseuer <jensgr gmx net>
-
- Fixes #318746
-
- * gnome-mouse-properties.c (populate_tree_model): gcc 2.95 compilation
- fixes.
-
-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.
-
-2005-08-31 Rodrigo Moya <rodrigo novell com>
-
- * gnome-mouse-properties.c (delay_value_changed_cb): guard against
- invalid values from the GtkHScale widget.
-
-2005-08-30 Sven Herzberg <herzi gnome-de org>
-
- * gnome-mouse-properties.c: listen to the XCURSOR_PATH environment
- variable (Closes: #312534).
-
-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.
-
-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.
-
-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).
-
-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).
-
-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).
-
-2005-07-12 Sven Herzberg <herzi gnome-de org>
-
- * gnome-mouse-properties.c: fix the without HAVE_XCURSOR build
-
-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).
-
-2005-01-04 Sebastien Bacher <seb128 debian org>
-
- * gnome-mouse-properties.glade: fixed a grammar error (Closes: #131521)
-
-2005-01-02 Sebastien Bacher <seb128 debian org>
-
- * gnome-mouse-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-11-09 Mark McLoughlin <mark skynet ie>
-
- * Makefile.am: install .desktop file in $(datadir)/applications
-
- * gnome-settings-mouse.desktop.in: add OnlyShowIn=GNOME;
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-2004-08-20 Frederic Crozat <fcrozat mandrakesoft com>
-
- * gnome-mouse-properties.c: (main):
- Use themed icon for WM hint.
-
-2004-06-15 Bastien Nocera <hadess hadess net>
-
- * .cvsignore: upd
-
-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-mouse-properties.c: (dialog_response_cb): Update help
- link to point to user-guide.xml
-
-2004-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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 13:53:23 2003 Jonathan Blandford <jrb redhat com>
-
- * gnome-mouse-properties.c (delay_value_changed_cb): fix the
- double click peditor.
-
-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.
-
-Fri Aug 1 14:29:12 2003 Jonathan Blandford <jrb redhat com>
-
- * gnome-mouse-properties.c (setup_dialog): remove markup from
- translated strings, #118801.
-
-Fri Aug 1 13:06:04 2003 Jonathan Blandford <jrb redhat com>
-
- * gnome-mouse-properties.c (create_dialog): add support for
- Xcursors.
-
-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.
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-06-24 Jody Goldberg <jody gnome org>
-
- * Release 2.3.3
-
-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.
-
-2003-05-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.1
-
-2003-04-29 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-mouse-properties.c: (read_cursor_font), (setup_dialog):
- Plug a couple of leaks.
-
-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-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-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-25 Rajkumar Sivasamy <rajkumar siva wipro com>
-
- * gnome-mouse-properties.c: Register mouse double click images
- as stock icons, so that they are themable.
- Fixes bug 96081
-
-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>
-
- * mouse.desktop.in: Fix the desktop file so that it validates.
-
-2002-08-08 Seth Nickell <snickell stanford edu>
-
- * gnome-mouse-properties.glade:
-
- Fix alignments.
-
-2002-07-16 Jody Goldberg <jody gnome org>
-
- * gnome-mouse-properties.c (main) : set icon.
-
-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.
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-2002-05-28 Satyajit Kanungo <satyajit kanungo wipro com>
-
- * gnome-mouse-properties.c : Changed the help file link
- to get the help document from user-guide.
-
-2002-05-26 Jody Goldberg <jody gnome org>
-
- * gnome-mouse-properties.c (dialog_response_cb) : Improve handling of
- help failures.
-
-Sun May 26 11:31:34 2002 Jonathan Blandford <jrb gnome org>
-
- * gnome-mouse-properties.c (main): use APPID instead of argv[0]
-
-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
-
-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.
-
-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
-
-2002-05-13 Jody Goldberg <jody gnome org>
-
- * gnome-mouse-properties.glade : Remove separator.
- Remove accelerators in tabs.
-
-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.
-
-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.
-
-2002-05-09 Jody Goldberg <jody gnome org>
-
- * gnome-mouse-properties.c (dialog_button_clicked_cb) : enable help.
- (main) : ditto.
-
-2002-05-09 Jody Goldberg <jody gnome org>
-
- * gnome-mouse-properties.glade : long forgotten atk patch from Dave.
- Sorry.
-
-2002-05-08 Jakub Steiner <jimmac ximian com>
-
- * double-click-maybe.png:
- * double-click-off.png:
- * double-click-on.png: use a lightbulb on a dark background
-
-Wed Apr 10 18:05:42 2002 Jonathan Blandford <jrb gnome org>
-
- * mouse.desktop.in (Exec): s/gnome2/gnome
-
-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.
-
-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.
-
-2002-03-10 Seth Nickell <snickell stanford edu>
-
- * gnome-mouse-properties.c: (main):
-
- Activate the settings daemon if its not already running.
-
-2002-02-27 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-mouse-properties.c: s/PACKAGE/GETTEXT_PACKAGE/g
-
-Tue Feb 19 23:52:17 2002 Jonathan Blandford <jrb redhat com>
-
- * gnome-mouse-properties.c (cursor_font_changed): Hook up cursor code.
-
-Fri Feb 8 01:41:40 2002 Jonathan Blandford <jrb redhat com>
-
- * Makefile.am (pixmap_DATA): install cursor images.
-
-2002-02-04 Lauris Kaplinski <lauris ximian com>
-
- * gnome-mouse-properties.c (drawing_area_expose_event): Kill warning
- (dialog_button_clicked_cb): Use G_TYPE_STRING
- (dialog_button_clicked_cb): Use GtkDialog
- (left_handed_toggle_cb): Do not crash on NULL value
-
-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.
-
-2001-12-20 Seth Nickell <snickell stanford edu>
-
- * mouse.desktop.in:
-
- Add Categories field.
-
-2001-12-20 Bradford Hovinen <hovinen ximian com>
-
- * mouse.desktop.in (Icon, Exec): Update
-
- * mouse-properties-capplet.c (dialog_button_clicked_cb): Update
- (main): Use a GtkDialog rather than GnomeDialog; don't place weak
- ref on gtk_main_quit
- (load_pixbufs): Locate files with gnome_program_locate_file
- Eliminate compiler warnings
-
-2001-12-20 Hans Petter Jansson <hpj ximian com>
-
- * Makefile.am: Remove rule that prevented install.
-
-2001-12-20 Bradford Hovinen <hovinen ximian com>
-
- * mouse.desktop.in.in (Exec): Update
-
-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
- (main): Remove --apply and --init-session-settings
- (setup_dialog): Use g_object_set to set the conversion callbacks
- (*_{to|from}_gconf): Update to reflect changes in gconf peditors
- (setup_dialog): Use numeric_range
-
-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
-
-2001-10-18 Bradford Hovinen <hovinen ximian com>
-
- * mouse-properties-capplet.c (apply_settings): Only swap buttons 1
- and 3 in the mapping
-
-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
- mouse-properties-control and create a wrapper script from
- ../common/wrapper-script.in to be named mouse-properties-capplet
-
-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
-
-2001-08-21 Bradford Hovinen <hovinen ximian com>
-
- * mouse-properties-capplet.c (apply_settings): Use a CORBA
- exception structure
-
-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>
-
- * mouse-properties-capplet.c (apply_settings): Use MAX_THRESH -
- threshold value
-
- * mouse-properties.glade: Fix mouse speed and acceleration
- controls to be wider and to use discrete values
-
- * mouse-properties.xml: Change type of right-to-left to ulong
-
- * mouse-properties-capplet.c (apply_settings): Use get_ulong
- rather than get_boolean
-
- * RELEASE : 1.5.2
-
-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.
- (cappletname): add pixmap_DATA to EXTRA_DIST
-
-2001-07-25 Chema Celorio <chema celorio com>
-
- * Makefile.am: remove the DESKTOP_IN_RULE and copy the sed here
-
-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.
-
-2001-07-24 Bradford Hovinen <hovinen ximian com>
-
- * Makefile.am (pixmap_DATA): Fixed pixmap_DATA line to install
- mouse pixmaps
-
- Courtesy Stephen Browne <stephen browne sun com>:
- * mouse-properties-capplet.c: bonobo-conf rewrite
- (setup_dialog): Use bonobo_peditor_option_radio_construct
-
-2001-07-20 Chema Celorio <chema celorio com>
-
- * RELEASE : 1.5.0
-
-2001-07-19 Chema Celorio <chema celorio com>
-
- * Makefile.am (cappletname): distcheck love
-
-2001-07-19 Bradford Hovinen <hovinen ximian com>
-
- * Makefile.am (EXTRA_DIST): Added mouse-left.png and mouse-right.png
-
-2001-07-18 Chema Celorio <chema celorio com>
-
- * prefs-widget.c (set_pixmap_file): the path of the pixmaps was
- changed
-
- * mouse-properties.glade: set a group for the radio buttons
-
-2001-07-17 Bradford Hovinen <hovinen ximian com>
-
- * Makefile.am (EXTRA_DIST): Changed Applications_DATA to
- Applications_in_files
-
-2001-07-17 Jakub Steiner <jimmac ximian com>
-
- * mouse-left.png, mouse-right.png: hi-res images
-
-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.
diff --git a/capplets/network/ChangeLog b/capplets/network/ChangeLog
index cce9a4a..3d2a7ae 100644
--- a/capplets/network/ChangeLog
+++ b/capplets/network/ChangeLog
@@ -1,403 +1,3 @@
-==================== 2.25.90 ====================
-
-2009-01-19 Luca Ferretti <elle uca libero it>
-
- * gnome-network-properties.desktop.in.in: Update Icon key to
- new name too
-
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-
-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)
-
-==================== 2.25.1 ====================
-
-Fri Oct 24 16:58:35 2008 S?ren Sandmann <sandmann redhat com>
-
- * gnome-network-preferences.c: Use gtk_init() instead of
- gnome_program_init().
-
-==================== 2.24.0.1 ====================
-
-2008-09-21 Jens Granseuer <jensgr gmx net>
-
- * 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.
-
-==================== 2.23.2 ====================
-
-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)
-
-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)
-
-2008-02-05 Jens Granseuer <jensgr gmx net>
-
- * gnome-network-preferences.glade: don't mark padding strings as
- translatable (bug #514598)
-
-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)
-
-2007-07-24 Denis Washington <denisw svn gnome org>
-
- * gnome-network-preferences.c: also use new icon in the window titlebar.
-
-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 Vyb?ral <cornelius vybiral info> (closes bug #399051)
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * gnome-network-preferences.desktop.in.in: renamed Bugzilla product.
-
-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)
-
-2007-01-29 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-network-preferences.c: (create_listmodel):
- Sparse warning fix.
-
-2007-01-06 Rodrigo Moya <rodrigo gnome-db org>
-
- * gnome-network-preferences.glade: added missing mnemonic.
-
-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.
-
-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().
-
-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)
-
-2006-07-23 Sebastien Bacher <seb128 debian org>
-
- * gnome-network-preferences.desktop.in.in: don't list the Application
- category, patch by Vincent Fretin <vincent fretin gmail com>
- (Closes: #344321)
-
-2006-01-27 Crispin Flowerday <gnome flowerday cx>
-
- * gnome-network-preferences.glade: Use 'r' as a mnemoic rather
- than 'i' (bug #328884)
-
-2005-07-16 Sebastien Bacher <seb128 debian org>
-
- * gnome-network-preferences.glade: fixed a mnemonic conflict (#155953).
-
-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).
-
-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
-
-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
-
-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).
-
-2005-01-02 Sebastien Bacher <seb128 debian org>
-
- * gnome-network-preferences.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-15 Sebastien Bacher <seb128 debian org>
-
- * gnome-network-preferences.desktop.in.in: changed the tooltip
- to respect the HIG.
-
-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).
-
-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).
-
-2004-11-09 Mark McLoughlin <mark skynet ie>
-
- * Makefile.am: install .desktop file in $(datadir)/applications
-
- * gnome-network-preferences.desktop.in: add OnlyShowIn=GNOME;
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-2004-06-26 Muktha <muktha narayan wipro com>
-
- * gnome-network-preferences.glade: Allow only numeric values in
- spin buttons. Fixes #138654.
-
-2004-06-21 David Sede?o <david alderia com>
-
- * gnome-network-preferences.glade: Change mnemonic for Username.
- Fixes bug #144333
-
-2004-05-18 Padraig O'Briain <padraig obriain sun com>
-
- * gnome-network-preferences.glade: Mark accessible names for
- translation. Fixes bug #136291.
-
-2004-04-15 Jody Goldberg <jody gnome org>
-
- * Release 2.6.1
-
-2004-04-07 Jody Goldberg <jody gnome org>
-
- * gnome-network-preferences.c : sync the icon with the desktop file
-
-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-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.
-
-2004-02-13 Jody Goldberg <jody gnome org>
-
- * Release 2.5.3
-
-2004-02-12 Mark McLoughlin <mark skynet ie>
-
- * gnome-network-preferences.c: (cb_dialog_response),
- (cb_details_dialog_response): Update help link to point to
- user-guide.xml
-
-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.
-
-2004-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-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
-
-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.
-
-2003-07-18 Christian Neumair <chris gnome-de org>
-
- * gnome-network-preferences.glade: Some more padding fixes.
-
-2003-07-17 Dennis Cranston <dennis_cranston at yahoo com>
-
- * gnome-network-preferences.glade: Minor HIG widget padding
- adjustments. Fix a mnemonic conflict.
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-06-24 Jody Goldberg <jody gnome org>
-
- * Release 2.3.3
-
-2003-05-15 Malcolm Tredinnick <malcolm commsecure com au>
-
- * gnome-network-preferences.desktop.in: Use Header
- capitalisation for menu items. Fixes bug #112939.
-
-2003-05-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.1
-
-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
-
-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-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-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>
-
- * gnome-network-preferences.desktop.in: Fix the desktop file so
- that it validates.
-
-2002-08-08 Seth Nickell <snickell stanford edu>
-
- * gnome-network-preferences.glade:
-
- Fix alignment.
-
-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.
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-2002-05-28 Satyajit Kanungo <satyajit kanungo wipro com>
-
- * gnome-network-preferences.c : Changed the help file link
- to get the help document from user-guide.
-
-2002-05-26 Jody Goldberg <jody gnome org>
-
- * gnome-network-preferences.c (cb_dialog_response) : Improve handling
- of help failures.
-
-Sun May 26 11:45:26 2002 Jonathan Blandford <jrb gnome org>
-
- * gnome-network-preferences.c (main): use APPID instead of argv[0]
-
-2002-05-15 Mark McLoughlin <mark skynet ie>
-
- * gnome-network-preferences.c (setup_dialog): kill workaround
- libglade bug that has since been fixed.
-
-2002-05-08 Jody Goldberg <jody gnome org>
-
- * gnome-network-preferences.glade : add help.
-
- * gnome-network-preferences.c (cb_dialog_response) : fix help.
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
diff --git a/capplets/windows/ChangeLog b/capplets/windows/ChangeLog
index 188ce9f..3d2a7ae 100644
--- a/capplets/windows/ChangeLog
+++ b/capplets/windows/ChangeLog
@@ -1,470 +1,3 @@
-==================== 2.25.90 ====================
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-==================== 2.25.1 ====================
-
-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().
-
-==================== 2.24.0.1 ====================
-
-2008-09-12 Christian Persch <chpe gnome org>
-
- * gnome-window-properties.glade: Reduce spacings to HIG-conform
- values. Bug #551878.
-
-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)
-
-==================== 2.23.2 ====================
-
-2007-12-06 Jens Granseuer <jensgr gmx net>
-
- * gnome-window-properties.c: (reload_mouse_modifiers): add a comment
- for translators (bug #502087)
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * window-properties.desktop.in.in: renamed Bugzilla product.
-
-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.
-
-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
-
-2007-01-31 Jens Granseuer <jensgr gmx net>
-
- * gnome-window-properties.c: (main): don't leak the references to the
- glade dialog and GnomeProgram
-
-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.
-
-2006-07-23 Sebastien Bacher <seb128 debian org>
-
- * window-properties.desktop.in.in: don't list the Application category,
- patch by Vincent Fretin <vincent fretin gmail com> (Closes: #344321)
-
-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.
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-window-properties.c: (main): Remove unused code.
-
-2005-01-02 Sebastien Bacher <seb128 debian org>
-
- * gnome-window-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-15 Sebastien Bacher <seb128 debian org>
-
- * window-properties.desktop.in.in: changed the tooltip to respect
- the HIG.
-
-2004-11-09 Mark McLoughlin <mark skynet ie>
-
- * Makefile.am: install .desktop file in $(datadir)/applications
-
- * window-properties.desktop.in: add OnlyShowIn=GNOME;
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-2004-08-20 Frederic Crozat <fcrozat mandrakesoft com>
-
- * gnome-window-properties.c: (main):
- Use themed icon for window hint.
-
-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.
-
-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
-
-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.
-
-2004-05-30 Ole Laursen <olau hardworking dk>
-
- * gnome-window-properties.glade: Revamped the internal design and
- inserted headings to make the layout cleaner.
-
-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-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-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.
-
-2003-07-17 Dennis Cranston <dennis_cranston at yahoo com>
-
- * gnome-window-properties.glade: Make close the default
- button.
-
-2003-07-17 Dennis Cranston <dennis_cranston at yahoo com>
-
- * gnome-window-properties.glade: Minor HIG widget padding
- adjustments.
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-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 Alex Duggan <aldug astrolinux com>
-
- * gnome-window-properties.c: use appropriate
- window border icon.
-
-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-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-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
-
-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-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
-
-2002-10-21 Seth Nickell <snickell stanford edu>
-
- * gnome-window-properties.c: (setup_appearance_option_menu):
-
- Fix potential segfault.
-
-2002-10-21 Seth Nickell <snickell stanford edu>
-
- * gnome-window-properties.c: (update_gui):
-
- Fix segfault caused by a WM where the settings module
- wasn't found.
-
-2002-10-21 Seth Nickell <snickell stanford edu>
-
- Patch from sylvain_pasche yahoo fr
-
- * gnome-window-properties.c: (setup_appearance_option_menu):
-
- Fix bug that caused a segfault when the GConf theme key
- was missing.
-
-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-31 Jacob Berkman <jacob ximian com>
-
- * metacity-window-manager.c: include sys/types.h before dirent.h
- and string.h
-
-2002-08-21 Jody Goldberg <jody gnome org>
-
- * Release 2.1.0
-
-2002-08-19 Ross Burton <ross burtonini com>
-
- * window-properties.desktop.in: Fix the desktop file so it
- validates.
-
-2002-08-08 jacob berkman <jacob ximian com>
-
- * metacity-window-manager.c (_MetacityWindowManagerPrivate): add
- padding so that it builds on non-gcc
-
-2002-08-08 Seth Nickell <snickell stanford edu>
-
- * metacity-window-manager.c: (metacity_set_theme),
- (add_themes_from_dir), (metacity_get_theme_list),
- (metacity_set_font), (metacity_set_focus_follows_mouse),
- (metacity_get_user_theme_folder),
- (metacity_window_manager_class_init):
-
- Implement all calls for metacity, and check more error
- stuff.
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-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.
-
-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.
-
-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 :-/)
-
-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.
-
-2002-05-15 jacob berkman <jacob ximian com>
-
- * Makefile.am (libmetacity_la_SOURCES): remove
- gnome-window-manager.h
-
-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.
-
-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.
-
-2002-05-10 Seth Nickell <snickell stanford edu>
-
- * gnome-window-properties.c: (setup_dialog), (main):
-
- Hook titlebar font into GConf key.
-
- * window-properties.desktop.in:
-
- Set title in .desktop file.
-
-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.
-
-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:
diff --git a/help/ChangeLog b/help/ChangeLog
index b94f6b1..3d2a7ae 100644
--- a/help/ChangeLog
+++ b/help/ChangeLog
@@ -1,407 +1,3 @@
-2009-03-18 Kostas Papadimas <pkst gnome org>
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
- * Makefile.am:
- * el/el.po: Added Greek translation by Marios Zindilis.
-
-2009-03-16 Petr Kovar <pknbe volny cz>
-
- * cs/cs.po: Added Czech translation by Lucas Lommer.
- * Makefile.am: Added cs to DOC_LINGUAS.
-
-==================== 2.25.90 ====================
-
-==================== 2.25.3 ====================
-
-2008-12-18 Bastien Nocera <hadess hadess net>
-
- * C/config-sound.xml:
- * Makefile.am:
- * es/config-sound.xml: Remove docs for the sound capplet
-
-==================== 2.25.2 ====================
-==================== 2.25.1 ====================
-
-2008-10-24 Mario Blättermann <mariobl svn gnome org>
-
- * de/de.po: Added German translation.
- * Makefile.am: Added de to DOC_LINGUAS.
-
-2008-10-21 Jordi Mallach <jordi sindominio net>
-
- * ca valencia/ca valencia po: New Valencian (Southern Catalan)
- translation based on the Catalan file.
- * Makefile.am: Added Valencian (Southern Catalan) (ca valencia)
- translation.
-
-==================== 2.24.0.1 ====================
-
-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.
-
-==================== 2.23.2 ====================
-
-2008-03-05 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es/es.po: Updated Spanish translation
-
-2008-02-15 Luca Ferretti <elle uca libero it>
-
- * it/it.po:
- * Makefile.am:
- Added Italian translation.
-
-2008-01-20 Yannig Marchegay <yannig marchegay org>
-
- * oc.po: Updated Occitan translation.
-
-2008-01-14 Denis Washington <denisw svn gnome org>
-
- * C/config-mouse.xml:
- Remove XML header line.
-
-2008-01-14 Denis Washington <denisw svn gnome org>
-
- * C/config-mouse.xml:
- Updated to reflect the changes to the mouse capplet, e.g. the new
- Accessibility tab.
-
-2007-12-31 Yannig Marchegay <yannig marchegay org>
-
- * oc.po: Updated Occitan translation.
-
-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.
-
-2007-08-14 Satoru SATOH <ss gnome gr jp>
-
- * Makefile.am: Added ja to DOC_LINGUAS.
- * ja/ja.po: Added Japanese translation.
-
-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
-
-2007-07-01 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR/pt_BR.po: Fixed header information.
-
-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>.
-
-2007-06-28 Clytie Siddall <clytie riverland net au>
-
- * Makefile.am: Add vi to DOC_LINGUAS
- * vi.po: Added Vietnamese translation.
-
-2007-04-23 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es/es.po: Updated Spanish translation
-
-2007-03-12 Maxim Dziumanenko <dziumanenko gmail com>
-
- * Makefile.am: Add uk to DOC_LINGUAS
- * uk/uk.po: Updated Ukrainian translation.
-
-2007-02-16 David Lodge <dave cirt net>
-
- * en_GB/en_GB.po: Added English (British) translation
- * Makefile.am: Added en_GB to DOC_LINGUAS
-
-2007-01-25 AP Singh Alam <aalam users sf net>
-
- * pa.po: Moved to pa directory
- * Makefile.am: pa is added
-
-2007-01-20 Daniel Nylander <po danielnylander se>
-
- * sv/sv.po: Updated Swedish translation.
-
-2006-11-19 Daniel Nylander <po danielnylander se>
-
- * sv/sv.po: Updated Swedish translation.
-
-2006-11-19 Christophe Bliard <christophe bliard trux info>
-
- * fr/fr.po: Updated French translation.
-
-2006-11-16 Daniel Nylander <po danielnylander se>
-
- * help/sv/sv.po: Updated Swedish translation.
-
-2006-11-15 Kjartan Maraas <kmaraas gnome org>
-
- * C/control-center.xml: Fix build.
-
-2006-11-15 Kjartan Maraas <kmaraas gnome org>
-
- * C/control-center.xml: Add publisher info.
-
-2006-11-09 Daniel Nylander <po danielnylander se>
-
- * sv/sv.po: Updated Swedish translation.
-
-2006-09-03 Daniel Nylander <po danielnylander se>
-
- * sv/sv.po: Updated Swedish translation.
-
-2006-09-02 Daniel Nylander <po danielnylander se>
-
- * sv/sv.po: Updated Swedish translation.
-
-2006-08-15 Christophe Bliard <christophe bliard trux info>
-
- * fr/fr.po: Initial French translation.
-
-2006-06-25 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru/ru.po: Initial Russian translation.
-
-2006-06-06 Daniel Nylander <po danielnylander se>
-
- * sv/sv.po: Initial Swedish translation.
-
-2006-03-01 Joachim Noreiko <jnoreiko yahoo com>
-
- * C/control-center.xml: fix for #332184
- radically pruned this for 2.14.
- added link to the User Guide for help with prefs.
- none of the other xml files are included any more.
-
-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
-
-2005-07-27 Sebastien Bacher <seb128 debian org>
-
- * C/config-accessibility-keyboard.xml:
- * C/control-center.xml:
- fix the make distcheck.
-
-2005-07-27 Sebastien Bacher <seb128 debian org>
-
- * .cvsignore:
- * C/Makefile.am:
- * C/control-center-C.omf:
- * Makefile.am:
- * control-center.omf.in:
- switch to gnome-doc-utils.
-
-2005-07-20 Rodrigo Moya <rodrigo novell com>
-
- * C/config-screensaver.xml: specify the fact that it works with both
- xscreensaver and gnome-screensaver.
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-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-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-06-24 Jody Goldberg <jody gnome org>
-
- * Release 2.3.3
-
-2003-05-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.1
-
-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-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-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-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-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.
-
-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.
-
-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 while adding this file to CVS.
-
- * C/control-center-C.omf: Added file to CVS.
-
-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.
-
-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.
-
-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.
-
-2002-03-21 Kevin Breit <mrproper ximian com>
-
- * C/control-center.xml: Updated the file with the latest order and amount of things.
-
-2002-03-17 Kevin Breit <mrproper ximian com>
-
- * xmldocs.make: Added to CVS. I am a dummy, didn't add this.
-
-2002-03-14 Kevin Breit <mrproper ximian com>
-
- * C/Makefile.am: Added to cvs.
- Made this file work actually. Added a lot of stuff.
-
- * Makefile.am: Removed EXTRA_DIST part.
-
-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.
-
-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.
-
-2002-02-15 Kevin Breit <mrproper ximian com>
-
- * C/config-behavior.xml: Rewrote this for Gnome 2.
-
-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.
-
-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.
-
-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
-
- * 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
-
- * C/config-sound.xml: Added to CVS. This is now XMLified with complete Gnome 2 documentation for the sound capplet.
-
- * C/control-center.xml: Added to CVS. Should be XML valid.
-
- * C/control-center.sgml: Removed file from CVS. Will be replacing shortly.
diff --git a/libwindow-settings/ChangeLog b/libwindow-settings/ChangeLog
index acb5e38..3d2a7ae 100644
--- a/libwindow-settings/ChangeLog
+++ b/libwindow-settings/ChangeLog
@@ -1,362 +1,3 @@
-==================== 2.25.90 ====================
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-
-==================== 2.25.1 ====================
-
-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
-
-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.
-
-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.
-
-==================== 2.24.0.1 ====================
-
-==================== 2.23.2 ====================
-
-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.
-
-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.
-
-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.
-
-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.
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-window-manager.c: (gnome_window_manager_class_init):
- Remove some unused code.
-
-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.
-
-2004-12-25 Kjartan Maraas <kmaraas gnome org>
-
- * gnome-wm-manager.c: s/gboolean/guint/ in single bitfield to
- quiet warnings from sparse.
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-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.
-
-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-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-06-24 Jody Goldberg <jody gnome org>
-
- * Release 2.3.3
-
-2003-05-16 J.H.M. Dassen (Ray) <jdassen debian org>
-
- * Makefile.am: Added libgnome_window_settings_la_LIBADD to get complete
- inter-library dependency information into the library.
-
-2003-05-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.1
-
-Fri May 2 17:48:07 2003 Jonathan Blandford <jrb redhat com>
-
- * metacity-window-manager.c (add_themes_from_dir): better error
- checking.
-
-2003-03-30 Andrew Sobala <aes gnome org>
-
- * gnome-window-settings-2.0.pc.in:
- s/-lwindow-settings/-lgnome-window-settings/
-
-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
-
-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.
-
-Thu Jan 16 02:41:09 2003 Jonathan Blandford <jrb gnome org>
-
- * Release 2.1.7
-
-2003-01-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-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 ?
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-2002-11-23 Jody Goldberg <jody gnome org>
-
- * Release 2.1.3
-
-2002-11-02 Jody Goldberg <jody gnome org>
-
- * Release 2.1.2
-
-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.
-
-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-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-26 Jody Goldberg <jody gnome org>
-
- * gnome-wm-manager.c (gnome_wm_manager_get_current) : handle NULL.
-
-2002-08-21 Jody Goldberg <jody gnome org>
-
- * Release 2.1.0
-
-2002-08-08 Seth Nickell <snickell stanford edu>
-
- * gnome-window-manager.c: (gnome_window_manager_set_theme),
- (gnome_window_manager_get_theme_list),
- (gnome_window_manager_set_font),
- (gnome_window_manager_set_focus_follows_mouse),
- (gnome_window_manager_get_user_theme_folder),
- (gnome_window_manager_class_init):
- * gnome-window-manager.h:
-
- Add get_user_theme_folder, fix some minor bugs.
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-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 :-)
-
-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.
-
-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.
-
-2002-06-03 Kjartan Maraas <kmaraas gnome org>
-
- * .cvsignore: Add newline
- * gnome-wm-manager.c: Added #include <config.h>
-
-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 ... )
-
-2002-05-15 jacob berkman <jacob ximian com>
-
- * Makefile.am: don't link against libs, like libbackground does
-
-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.
diff --git a/po/ChangeLog b/po/ChangeLog
index 3dc3e7b..3d2a7ae 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,12579 +1,3 @@
-2009-06-10 Manoj Kumar Giri <mgiri redhat com>
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
- * hi.po: Committed Hindi Translation on behalf of Rajesh Ranjan.
-
-2009-06-08 Manoj Kumar Giri <mgiri redhat com>
-
- * or.po: Updated Oriya Translation.
-
-2009-04-18 Funda Wang <fundawang mail com>
-
- * zh_CN.po: Updated zh_CN translation from Xiyue Deng.
-
-2009-04-15 Khaled Hosny <khaledhosny eglug org>
-
- * ar.po: Updated Arabic translation.
-
-2009-04-14 Petr Kovar <pknbe volny cz>
-
- * cs.po: Fixed Czech translation.
-
-2009-04-13 Nikos Charonitakis <nikosx gmail com>
-
- * el.po: Updated Greek translation.
-
-2009-04-10 ReÅ?at SABIQ <tilde birlik gmail com>
-
- * LINGUAS: crh
- * crh.po: Added Crimean Tatar (Crimean Turkish) translation.
-
-2009-04-05 Nikos Charonitakis <nikosx gmail com>
-
- * el.po: Updated Greek translation by alefteris.
-
-2009-04-04 Claude Paroz <claude 2xlibre net>
-
- * fr.po: Updated French translation (fixes proposed by Bruno Brouard).
-
-2009-04-01 Christian Kirbach <Christian Kirbach googlemail com>
-
- * de.po: Updated German translation.
-
-2009-03-30 Raivis Dejus <orvils gmail com>
-
- * lv.po: Updated Latvian translation.
-
-2009-03-30 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2009-03-27 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation by Pavol Å imo.
-
-2009-03-25 Manoj Kumar Giri <mgiri redhat com>
-
- * or.po: Updated Oriya Translation.
-
-2009-03-24 Shankar Prasad <svenkate redhat com>
-
- * kn.po: Updated Kannada translations.
-
-2009-03-23 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2009-03-23 Shankar Prasad <svenkate redhat com>
-
- * kn.po: Updated Kannada translations.
-
-2009-03-22 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2009-03-21 Goran Rakic <grakic devbase net>
-
- * sr.po, sr latin po: Updated Serbian translation by MiloÅ¡ PopoviÄ?.
-
-2009-03-20 Milo Casagrande <milo ubuntu com>
-
- * it.po: Updated Italian translation.
-
-2009-03-20 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2009-03-20 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2009-03-19 Jürg Billeter <j bitron ch>
-
- * de.po: Updated German translation.
-
-2009-03-18 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic translation by Djihed Afifi.
-
-2009-03-18 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2009-03-17 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2009-03-16 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish translation.
-
-2009-03-16 Wouter Bolsterlee <wbolster svn gnome org>
-
- * nl.po: Updated Dutch translation by Tino Meinen.
-
-2009-03-16 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2009-03-16 Krishnababu K <kkrothap redhat com>
-
- * te.po: Updated Telugu Translation.
-
-2009-03-16 Manoj Kumar Giri <mgiri redhat com>
-
- * or.po: Updated Oriya Translation.
-
-2009-03-16 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2009-03-16 Amitakhya Phukan <amitakhya svn gnome org>
-
- * as.po: Updated Assamese translations.
-
-2009-03-16 Amitakhya Phukan <amitakhya svn gnome org>
-
- * as.po: Updated Assamese translations.
-
-2009-03-16 Krishnababu K <kkrothap redhat com>
-
- * te.po: Updated Telugu Translation.
-
-2009-03-16 Rajesh Ranjan <rajeshkajha yahoo com>
-
- * mai.po: added Maithili translation.
- * LINGUAS: Added Maithili (mai) to the list of Languages.
-
-2009-03-15 Andre Klapper <a9016009 gmx de>
-
- * af.po: Updated Afrikaans translation on behalf of Friedel Wolff.
- Fixes bug #574078.
-
-2009-03-14 <felix redhat com>
-
- * ta.po: Tamil Translation updated
-
-2009-03-14 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician translation
-
-2009-03-13 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek Translation by Jennie Petoumenou.
-
-2009-03-13 Ani Peter <apeter redhat com>
-
- * ml.po: Updated Malayalam Translations
-
-2009-03-13 Sandeep Shedmake <sshedmak redhat com>
-
- * mr.po: Updated Marathi Translations.
-
-2009-03-13 Runa Bhattacharjee <runab redhat com>
-
- * bn_IN.po: Updated Bengali India Translation
-
-2009-03-12 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2009-03-11 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation by Yaron Sharabani.
-
-2009-03-11 Krishnababu K <kkrothap redhat com>
-
- * te.po: Updated Telugu Translation.
-
-2009-03-10 Ankitkumar Patel <ankit redhat com>
-
- * gu.po: Updated Gujarati Translations.
-
-2009-03-10 Tommi Vainikainen <thv iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2009-03-10 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2009-03-09 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru.po: Updated Russian translation.
-
-2009-03-09 Rajesh Ranjan <rranjan redhat com>
-
- * hi.po: Updated Hindi Translation.
-
-2009-03-08 Petr Kovar <pknbe volny cz>
-
- * cs.po: Updated Czech translation.
-
-2009-03-08 Mark Krapivner <mark125 gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2009-03-08 Gintautas Miliauskas <gintas akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2009-03-07 Milo Casagrande <milo ubuntu com>
-
- * it.po: Updated Italian translation.
-
-2009-03-07 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Fixed wrong translation.
-
-2009-03-05 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2009-03-05 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2009-03-05 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2009-03-04 Og Maciel <ogmaciel gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation by
- Andre Gondim.
-
-2009-03-05 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2009-03-04 Philip Withnall <philip tecnocode co uk>
-
- * en_GB.po: Updated British English translation.
-
-2009-03-03 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2009-03-03 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2009-03-03 I. Felix <ifelix redhat com>
-
- * ta.po: Bug # 554507, 561193 corrected
-
-2009-03-03 Christian Kirbach <Christian Kirbach googlemail com>
-
- * de.po: Updated German translation.
-
-==================== 2.25.92 ====================
-
-2009-03-02 Milo Casagrande <milo ubuntu com>
-
- * it.po: Updated Italian translation
-
-2009-03-02 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2009-03-01 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2009-02-28 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2009-02-28 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2009-02-28 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2009-02-28 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2009-02-28 Og Maciel <ogmaciel gnome org>
-
- * it.po: Updated Italian translation by Milo Casagrande.
-
-2009-02-28 Philip Withnall <philip tecnocode co uk>
-
- * en_GB.po: Updated British English translation.
-
-2009-02-27 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2009-02-27 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2009-02-27 Og Maciel <ogmaciel gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2009-02-25 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation by Ihar Hrachyshka.
-
-2009-02-23 Philip Withnall <philip tecnocode co uk>
-
- * en_GB.po: Updated British English translation.
-
-2009-02-21 Og Maciel <ogmaciel gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation by
- André Gondim.
-
-2009-02-20 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2009-02-19 Gil Forcada <gforcada gnome org>
-
- * ca.po: Updated Catalan translation.
-
-2009-02-18 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2009-02-17 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).
-
-2009-02-17 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2009-02-15 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2009-02-15 Kenneth Nielsen <k nielsen81 gmail com>
-
- * da.po: Updated Danish translation by Ask H. Larsen
-
-2009-02-15 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2009-02-14 Claude Paroz <claude 2xlibre net>
-
- * fr.po: Updated French translation by Laurent Coudeur and Claude Paroz.
-
-2009-02-14 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2009-02-14 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2009-02-13 Jani Monoses <jani ubuntu com>
-
- * ro.po: Updated Romanian translation
- by Adi Roiban <adi roiban ro>
-
-2009-02-13 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2009-02-13 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2009-02-12 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2009-02-12 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2009-02-11 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2009-02-11 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2009-02-10 Gil Forcada <gforcada gnome org>
-
- * ast.po: Updated Asturian translation on behalf of Mikel González.
-
-2009-02-09 Jonh Wendell <jwendell gnome org>
-
- * pt_BR.po: Brazilian Portuguese translation updated by Andre Gondim
- and myself.
-
-2009-02-08 Mark Krapivner <mark125 gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2009-02-08 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2009-02-08 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2009-02-07 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2009-02-07 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2009-02-06 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2009-02-05 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2009-02-05 Sweta Kothari <swkothar redhat com>
-
- * gu.po: Committed Gujarati Translation.
-
-==================== 2.25.90 ====================
-
-2009-02-04 Vincent Untz <vuntz gnome org>
-
- * POTFILES.skip: updated
-
-2009-02-04 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).
-
-2009-02-01 Gabor Kelemen <kelemeng gnome hu>
-
- * POTFILES.in: Added files in capplets/network. Fixes bug #570094
-
-2009-02-01 Gintautas Miliauskas <gintas akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2009-02-01 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2009-01-30 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2009-01-30 Manoj Kumar Giri <mgiri redhat com>
-
- * or.po: Updated Oriya Translation.
-
-2009-01-27 Jonh Wendell <jwendell gnome org>
-
- * pt_BR.po: Brazilian Portuguese translation updated by Henrique P. Machado.
-
-2009-01-27 Gil Forcada <gforcada gnome org>
-
- * ca.po: Updated Catalan translation by Joan Duran.
- * POTFILES.in: Removed non existing files.
-
-2009-01-24 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2009-01-24 ç??é?²(Gan Lu) <rhythm gan gmail com>
-
- * zh_CN.po: Updated Chinese Simplified translation
-
-2009-01-21 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2009-01-16 Thierry Randrianirian <thierryr svn gnome org>
-
- * mg.po: Updated Malagasy translation.
-
-2009-01-12 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2009-01-10 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2009-01-09 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2009-01-08 Nurali Abdurahmonov <mavnur gmail com>
-
- * uz.po: Added Uzbek translations by Nurali.
- * LINGUAS: added uz and uz cyrillic
- * uz cyrillic po: added uzbek cyrillic transklations by Nurali
-
-2009-01-05 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2009-01-01 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-==================== 2.25.3 ====================
-
-2008-12-18 Bastien Nocera <hadess hadess net>
-
- * POTFILES.in: Remove sound capplet files
-
-2008-12-18 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2008-12-15 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-==================== 2.25.2 ====================
-
-2008-11-30 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-11-27 Bastien Nocera <hadess hadess net>
-
- * POTFILES.in: Add new files from the fingerprint
- enrollment support
-
-2008-11-09 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation from stable branch.
-
-2008-11-09 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-==================== 2.25.1 ====================
-
-2008-11-05 Vincent Untz <vuntz gnome org>
-
- * POTFILES.skip: updated
-
-2008-10-30 Maxim Dziumanenko <dziumanenko gmail com>
-
- * uk.po: Update Ukrainian translation.
-
-2008-10-26 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Merged from branch gnome-2-24 fixes in Brazilian Portuguese
- translation.
-
-2008-10-24 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Priit Laes
-
-2008-10-24 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Priit Laes
-
-2008-10-23 Gil Forcada <gforcada gnome org>
-
- * LINGUAS: Added ast.
- * ast.po: Added Asturian translation on behalf of Mikel González.
-
-2008-10-21 Jordi Mallach <jordi sindominio net>
-
- * ca valencia po: New Valencian (Southern Catalan) translation
- based on the Catalan file.
- * LINGUAS: Added ca valencia
-
-2008-10-18 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation (merged from gnome-2-24 branch).
-
-2008-10-17 Kenneth Nielsen <k nielsen81 gmail com>
-
- * da.po: Updated Danish translation
-
-2008-10-16 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation by Pavol Å imo.
-
-2008-10-13 Kenneth Nielsen <k nielsen81 gmail com>
-
- * da.po: Updated Danish translation by Kenneth Nielsen
-
-2008-10-12 Petr Kovar <pknbe volny cz>
-
- * cs.po: Updated Czech translation.
-
-2008-10-11 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Merged from branch gnome-2-24.
-
-2008-10-06 Nikos Charonitakis <nikosx gmail com>
-
- * el.po: Updated Greek translation.
-
-2008-10-06 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-10-06 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2008-10-05 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-10-03 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-10-02 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- gl.po: Updated Galician translation
-
-2008-09-30 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-09-29 Wouter Bolsterlee <wbolster svn gnome org>
-
- * nl.po: Updated Dutch translation by Wouter Bolsterlee.
-
-2008-09-29 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-09-29 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-09-29 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-09-28 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2008-09-28 Goran RakiÄ? <grakic devbase net>
-
- * sr.po, sr latin po: Updated Serbian translation.
-
-2008-09-27 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-==================== 2.24.0.1 ====================
-
-2008-09-24 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-09-23 Timo Jyrinki <timo jyrinki iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-09-22 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-09-22 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-09-21 Mugurel Tudor <mugurelu gnome ro>
-
- * ro.po: Updated Romanian translation by
- MiÅ?u Moldovan <dumol gnome ro>
-
-2008-09-21 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2008-09-21 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-09-21 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-09-21 Gintautas Miliauskas <gintas akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2008-09-20 Kenneth Nielsen <k nielsen81 gmail com>
-
- * da.po: Updated Danish translation by Ask H. Larsen
-
-2008-09-20 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-09-20 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian Translation.
-
-2008-09-20 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-09-20 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek Translation.
-
-2008-09-19 Goran Rakic <grakic devbase net>
-
- * sr.po, sr latin po: Updated Serbian translation (by MiloÅ¡ PopoviÄ?).
-
-2008-09-19 Sweta Kothari <swkothar redhat com>
-
- * gu.po: Committed Gujarati Translation.
-
-2008-09-18 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2008-09-18 Inaki Larrañaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2008-09-18 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-09-18 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).
-
-2008-09-18 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2008-09-17 I. Felix <ifelix redhat com>
-
- * ta.po: Tamil Translation updated by Tirumurthi Vasudevan
-
-2008-09-16 Praveen Arimbrathodiyil <pravi a gmail com>
-
- * ml.po: Malayalam translation updated by Ashik Salahudeen.
-
-2008-09-17 Runa Bhattacharjee <runab redhat com>
-
- * bn_IN.po: Updated Bengali India Translation
-
-2008-09-16 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-09-15 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian Translation.
-
-2008-09-15 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2008-09-15 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2008-09-15 Pema Geyleg <pema geyleg gmail com>
-
- * dz.po: Updated Dzongkha Translation
-
-2008-09-13 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po:Terminology fixes in Brazilian Portuguese translation.
-
-2008-09-13 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2008-09-13 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish Translation.
-
-2008-09-12 Philip Withnall <philip tecnocode co uk>
-
- * en_GB.po: Updated British English translation.
-
-2008-09-11 Sandeep Shedmake <sshedmak redhat com>
-
- * mr.po: Committed Marathi Translations.
-
-2008-09-11 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-09-10 Sweta Kothari <swkothar redhat com>
-
- * gu.po: Committed Gujarati Translation.
-
-2008-09-10 Sweta Kothari <swkothar redhat com>
-
- * gu.po: Committed Gujarati Translation.
-
-2008-09-09 Robert Sedak <robert sedak sk t-com hr>
-
- * hr.po: Updated Croatian translation.
-
-2008-09-08 Robert Sedak <robert sedak sk t-com hr>
-
- * hr.po: Updated Croatian translation.
-
-2008-09-08 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-09-07 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2008-09-07 Reinout van Schouwen <reinouts gnome org>
-
- * nl.po: Updated Dutch translation (msgctxt)
-
-2008-09-07 Reinout van Schouwen <reinouts gnome org>
-
- * nl.po: Updated Dutch translation
-
-2008-09-07 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2008-09-07 Petr Kovar <pknbe volny cz>
-
- * cs.po: Updated Czech translation.
-
-2008-09-07 Philip Withnall <philip tecnocode co uk>
-
- * en_GB.po: Updated British English translation.
-
-2008-09-07 Gil Forcada <gforcada gnome org>
-
- * ca.po: Minor fixes.
-
-2008-09-06 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated zh_CN translation.
-
-2008-09-05 Gil Forcada <gforcada gnome org>
-
- * ca.po: Updated Catalan translation by Joan Duran.
-
-2008-09-05 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-09-05 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2008-09-05 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-09-05 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2008-09-05 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2008-09-04 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-09-03 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-09-03 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-09-02 Alexander Shopov <ash contact bg>
-
- * bg.po: 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>
-
-2008-09-02 Nguy�n Thái Ng�c Duy <pclouds gmail com>
-
- * vi.po: Updated Vietnamese translation
-
-2008-09-01 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-09-01 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru.po: Updated Russian translation.
-
-2008-08-30 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician translation.
-
-2008-08-30 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-08-29 Seán de Búrca <sdeburca svn gnome org>
-
- * ga.po: Updated Irish translation.
-
-2008-08-29 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-08-29 Arangel Angov <arangel linux net mk>
-
- * mk.po: Updated Macedonian translation.
-
-2008-08-28 Claude Paroz <claude 2xlibre net>
-
- * fr.po: Updated French translation.
-
-2008-08-28 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-08-28 Petr Kovar <pknbe volny cz>
-
- * cs.po: Updated Czech translation.
-
-2008-08-27 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-08-27 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-08-27 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2008-08-26 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation by Mark Krapivner.
-
-2008-08-26 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2008-08-26 Runa Bhattacharjee <runab redhat com>
-
- * bn_IN.po: Updated Bengali India Translation
-
-2008-08-25 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-08-25 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2008-08-25 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- gl.po: Updated Galician translation
-
-2008-08-25 Theppitak Karoonboonyanan <thep linux thai net>
-
- * POTFILES.in: Remove vanished libslab/libslab-bookmarkfile.c.
- * th.po: Updated Thai translation.
-
->>>>>>> .r8974
-2008-08-25 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2008-08-20 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Brazilian Portuguese translation updated by Djavan
- Fagundes.
-
-2008-08-20 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2008-08-20 Tomasz Dominikowski <tdominikowski aviary pl>
-
- * pl.po: Updated Polish translation
-
-2008-08-17 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-08-17 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2008-08-16 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation by Ihar Hrachyshka.
-
-2008-08-15 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-08-14 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-08-13 Seán de Búrca <sdeburca svn gnome org>
-
- * ga.po: Updated Irish translation.
-
-2008-08-12 Og Maciel <ogmaciel gnome org>
- * pt_BR.po: Updated translation by Djavan Fagundes.
-
-2008-08-12 Ilkka Tuohela <hile iki fi>
- * fi.po: Updated Finnish translation.
-
-2008-08-12 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2008-08-11 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).
-
-2008-08-10 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-08-10 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2008-08-08 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- gl.po: Updated Galician translation
-
-2008-08-07 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-08-07 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2008-08-06 Og Maciel <ogmaciel gnome org>
-
- * pt_BR.po: Updated translation by Djavan Fagundes.
-
-2008-08-6 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2008-08-03 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-08-02 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Terminology fixes by FabrÃcio Godoy.
-
-2008-07-31 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- gl.po: Updated Galician translation
-
-2008-07-29 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2008-07-28 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-07-28 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-07-28 Bastien Nocera <hadess hadess net>
-
- * POTFILES.in: Add a few more files to translate, from the
- libcanberra support
-
-2008-07-27 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Fixed translation of "lock" (by Vladimir Melo).
-
-2008-07-26 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-07-26 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-07-26 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-07-21 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-07-19 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-07-17 Claude Paroz <claude 2xlibre net>
-
- * fr.po: Updated French translation by Bruno Brouard and Claude Paroz.
-
-2008-07-16 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2008-07-15 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-07-14 Claude Paroz <claude 2xlibre net>
-
- * POTFILES.in: Updated file list.
-
-2008-07-07 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation by Ihar
- Hrachyshka.
-
-2008-07-05 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-07-02 Yannig Marchegay <yannig marchegay org>
-
- * oc.po: Updated Occitan translation.
-
-2008-06-27 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-06-25 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: Add missing file.
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-06-18 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-06-16 Rodrigo Moya <rodrigo gnome-db org>
-
- * POTFILES.in:
- * POTFILES.skip: skip themus files
-
-2008-06-11 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2008-06-11 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2008-06-11 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-06-08 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated zh_CN translation.
-
-2008-06-07 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-06-07 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-06-03 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-06-02 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2008-06-01 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2008-06-01 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-05-25 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2008-05-19 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Anas Husseini.
-
-==================== 2.23.2 ====================
-
-2008-05-17 Vincent Untz <vuntz gnome org>
-
- * POTFILES.in: updated
-
-2008-05-14 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-05-09 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-05-08 Stéphane Raimbault <stephane raimbault gmail com>
-
- * fr.po: Updated French translation.
-
-2008-05-06 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-05-03 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2008-05-01 Leonardo Ferreira Fontenelle <leonardof gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation by Henrique
- P Machado.
-
-2008-04-30 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-04-30 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-04-30 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-04-25 Gabor Kelemen <kelemeng gnome org>
-
- * hu.po: Translation updated.
-
-2008-04-19 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-04-17 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-04-13 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Yavor Doganov <yavor gnu org>
-
-2008-04-11 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-04-07 Eskild Hustvedt <eskildh gnome org>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2008-04-07 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-04-06 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-04-05 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated
-
-2008-04-03 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2008-04-01 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-03-30 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-03-28 Vladimer Sichinava <vsichi gnome org>
-
- * ka.po: Updated Georgian translation.
-
-2008-03-25 Philip Withnall <pwithnall svn gnome org>
-
- * en_GB.po: Updated British English translation.
-
-2008-03-23 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-03-20 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-03-15 Yuri Kozlov <kozlov y gmail com>
-
- * ru.po: Updated Russian translation.
-
-2008-03-12 Sunil Mohan Adapa <sunilmohan fsf org in>
-
- * te.po: Updated Telugu traslation done by
- Krishna Babu K <kkrothap redhat com>.
-
-2008-03-10 Rahul Bhalerao <b rahul pm gmail com>
-
- * mr.po: Updated Marathi Translation by Sandeep Shedmake.
-
-2008-03-10 Amitakhya Phukan <amitakhya svn gnome org>
-
- * as.po: Updated assamese translations.
-
-2008-03-10 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation
-
-2008-03-09 Rajesh Ranjan <rajeshkajha yahoo com>
-
- * hi.po: Hindi Translation updated
-
-2008-03-09 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-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).
-
-2008-03-09 Kenneth Nielsen <k nielsen81 gmail com>
-
- * da.po: Updated Danish translation
-
-2008-03-09 Gintautas Miliauskas <gintas akl lt>
-
- * lt.po: Committed Lithuanian translation by Vytautas Liuolia.
-
-2008-03-8 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Anas Husseini.
-
-2008-03-08 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-03-08 Runa Bhattacharjee <runab fedoraproject org>
-
- * bn_IN.po: Corrected errors related to plural form
-
-2008-03-08 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated
-
-2008-03-07 Maxim Dziumanenko <dziumanenko gmail com>
-
- * uk.po: Update Ukrainian translation.
-
-2008-03-06 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-03-05 Stéphane Raimbault <stephane raimbault gmail com>
-
- * fr.po: Updated French translation.
-
-2008-03-05 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-03-04 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-03-04 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-03-04 Amitakhkya Phukan <amitakhya svn gnome org>
-
- * as.po: Updated assamese translations.
-
-2008-03-04 Amitakhkya Phukan <amitakhya svn gnome org>
-
- * as.po: Updated assamese translations.
-
-2008-03-04 Amitakhya Phukan <amitakhya svn gnome org>
-
- * as.po: Updated Assamese translations.
-
-2008-03-03 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-03-04 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Fixed wrong translations.
-
-2008-03-03 Rahul Bhalerao <b rahul pm gmail com>
-
- * mr.po: Updated Marathi translations from Sandeep Shedmake.
-
-2008-03-03 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-03-02 Philip Withnall <pwithnall svn gnome org>
-
- * en_GB.po: Fixed British English translation.
-
-2008-03-02 Philip Withnall <pwithnall svn gnome org>
-
- * en_GB.po: Updated British English translation.
-
-2008-03-02 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-03-01 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Minor fix in Brazilian Portuguese translation.
-
-2008-02-29 Matthias Clasen <mclasen redhat com>
-
- * fi.po: Fix syntax of gconf default value translation.
-
-2008-02-29 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-02-28 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-02-27 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2008-02-25 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Fixed a message typo.
-
-2008-02-23 Jonh Wendell <jwendell gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2008-02-23 �smund Skjæveland <aasmunds ulrik uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2008-02-23 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2008-02-20 Claude Paroz <claude 2xlibre net>
-
- * fr.po: Updated French translation.
-
-2008-02-20 Artur Flinta <aflinta gmail com>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2008-02-20 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2008-02-18 Gil Forcada <gforcada gnome org>
-
- * ca.po: Updated Catalan translation by Joan Duran.
-
-2008-02-18 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation by Pavol Å imo.
-
-2008-02-18 Runa Bhattacharjee <runabh gmail com>
-
- * kn.po: Added Kannada Translations by Shankar Prasad
- * LINGUAGS: Added Kannada (kn) to the list of languages
-
-2008-02-18 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-02-17 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2008-02-17 Nikos Charonitakis <nikosx gmail com>
-
- * el.po: Updated Greek translation.
-
-2008-02-17 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2008-02-16 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2008-02-16 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2008-02-16 Arangel Angov <arangel linux net mk>
-
- * mk.po: Updated Macedonian translation.
-
-2008-02-16 Artur Flinta <aflinta gmail com>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2008-02-16 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-02-15 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-02-14 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-02-14 Pawan Chitrakar <chautari gmail com>
-
- * ne.po: Updated Nepali Translation.
-
-2008-02-14 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2008-02-13 Yannig Marchegay <yannig marchegay org>
-
- * oc.po: Updated Occitan translation.
-
-2008-02-13 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2008-02-12 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-02-11 Petr Kovar <pknbe volny cz>
-
- * cs.po: Updated Czech translation.
-
-2008-02-11 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-02-11 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-02-10 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-02-10 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-02-10 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated the wrong version in my latest commit, fix it.
-
-2008-02-10 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-02-10 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-02-10 Arangel Angov <arangel linux net mk>
-
- * mk.po: Updated Macedonian translation.
-
-2008-02-10 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2008-02-09 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-02-08 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-02-08 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-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).
-
-2008-02-06 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2008-02-05 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Comprehensive review by Pedro de Medeiros.
-
-2008-02-05 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-02-05 Arangel Angov <arangel linux net mk>
-
- * mk.po: Updated Macedonian translation.
-
-2008-02-04 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2008-02-02 Yannig Marchegay <yannig marchegay org>
-
- * oc.po: Updated Occitan translation.
-
-2008-02-02 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Brazilian Portuguese translation updated by Luiz Armesto.
-
-2008-02-02 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2008-02-01 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish translation
-
-2008-02-01 Amitakhya Phukan <amitakhya svn gnome org>
-
- * LINGUAS: added as to LINGUAS.
- * as.po: Updated assamese translations.
-
-2008-01-31 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2008-01-30 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2008-01-29 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-01-29 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation by Mark Krapviner.
-
-2008-01-29 Sebastien Bacher <seb128 ubuntu com>
-
- * POTFILES.in:
- * POTFILES.skip:
- don't translate sources which are not distributed
-
-2008-01-29 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2008-01-28 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-01-27 Stéphane Raimbault <stephane raimbault gmail com>
-
- * fr.po: Updated French translation by Jonathan Ernst, Stéphane
- Raimbault and Claude Paroz.
-
-2008-01-27 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-01-27 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation, fixes bug #511629
-
-2008-01-26 Claude Paroz <claude 2xlibre net>
-
- * POTFILES.in: Removed non-existent files.
-
-2008-01-25 Petr Kovar <pknbe volny cz>
-
- * cs.po: Updated Czech translation.
-
-2008-01-22 Andre Klapper <a9016009 gmx de>
-
- * de.po: Sync "beep" translation.
-
-2008-01-21 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-01-21 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2008-01-18 Gil Forcada <gforcada gnome org>
-
- * tr.po: Updated Turkish translation to pass msgfmt -cv.
-
-2008-01-18 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2008-01-17 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-01-17 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-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
-
-2008-01-16 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2008-01-15 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-01-14 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2008-01-14 Priit Laes <plaes at svn dot gnome dot org>
-
- * et.po: Translation updated by Ivar Smolin
-
-2008-01-09 Inaki Larranaga Murgoitio <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2008-01-07 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2008-01-06 Eskild Hustvedt <i81n zerodogg org>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2008-01-06 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2008-01-05 Claude Paroz <claude 2xlibre net>
-
- * sk.po: Updated Slovak translation on behalf of Peter Tuhársky
- <tuharsky misbb sk>.
-
-2008-01-05 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2008-01-03 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2008-01-03 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2008-01-03 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2007-12-31 Yannig Marchegay <yannig marchegay org>
-
- * oc.po: Updated Occitan translation.
-
-2007-12-28 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-12-28 Seán de Búrca <sdeburca svn gnome org>
-
- * ga.po: Updated Irish translation.
-
-2007-12-28 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2007-12-23 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2007-12-22 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Brazilian Portuguese translation updated by Luiz Armesto.
-
-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.
-
-2007-12-22 Luca Ferretti <elle uca libero it>
-
- * it.po: Backported Italian translation from gnome-2-20 branch
-
-2007-12-20 Seán de Búrca <sdeburca svn gnome org>
-
- * ga.po: Updated Irish translation.
-
-2007-12-17 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-12-15 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-12-14 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2007-12-11 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation
-
-2007-12-10 Matej UrbanÄ?iÄ? <mateju svn gnome org>
-
- * sl.po: Updated Slovenian Translation.
-
-2007-12-08 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2007-12-08 Ihar Hrachyshka <booxter lacinka org>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2007-12-07 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-12-06 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-12-06 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-12-03 Ani Peter <peter ani gmail com>
-
- * ml.po: Updated Malayalam Translation
-
-2007-12-03 Jens Granseuer <jensgr gmx net>
-
- * POTFILES.in:
- * POTFILES.skip: update files list (bug #500864)
-
-2007-11-29 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-11-25 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru.po: Updated Russian translation
- by Vasiliy Faronov <qvvx yandex ru>
-
-2007-11-15 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2007-11-13 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-11-12 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-11-12 Matej UrbanÄ?iÄ? <mateju svn gnome org>
-
- * sl.po: Updated Slovenian translation.
-
-2007-11-11 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-11-07 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-11-06 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-11-06 Ihar Hrachyshka <ihar hrachyshka gmail com>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2007-11-03 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-11-02 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-11-01 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es/es.po: Updated Spanish translation
-
-2007-10-31 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-10-27 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-10-25 Matej UrbanÄ?iÄ? <mateju svn gnome org>
-
- * sl.po: Updated Slovenian translation.
-
-2007-10-25 Priit Laes <plaes svn gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2007-10-25 Ihar Hrachyshka <ihar hrachyshka gmail com>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2007-10-24 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2007-10-23 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2007-10-23 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation.
-
-2007-10-21 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2007-10-18 Ihar Hrachyshka <ihar hrachyshka gmail com>
-
- * be latin po: Updated Belarusian Latin translation.
-
-2007-10-16 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-10-08 Priit Laes <plaes svn gnome org>
-
- * et.po: Translation update by Ivar Smolin.
-
-2007-10-08 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-10-02 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2007-10-02 Alexander Shopov <ash contact bg>
-
- * ChangeLog: Fix breakage introduced
- by commit [8147]
-
-2007-09-30 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2007-09-27 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-09-17 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2007-09-17 Gil Forcada <gforcada svn gnome org>
-
- * ca.po: Updated Catalan translation.
-
-2007-09-16 Kenneth Nielsen <k nielsen81 gmail com>
-
- * da.po: Updated Danish translation
-
-2007-09-16 Ihar Hrachyshka <ihar hrachyshka gmail com>
-
- * be latin po: Added Belarusian Latin translation.
-
-2007-09-16 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2007-09-16 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanse translation.
- * ChangeLog: Fixed a broken file at r8107.
-
-2007-09-16 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-09-16 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-09-15 Inaki Larranaga Murgoitio <dooteo zundan com>
-
- * eu.po: Updated Basque translation.
-
-2007-09-15 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-09-15 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek Translation.
-
-2007-09-15 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-09-15 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-09-15 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-09-14 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2007-09-14 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation
-
-2007-09-13 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Anas Husseini.
-
-2007-09-13 Espen Stefansen <espens svn gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-09-13 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-09-13 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2007-09-13 Jamil Ahmed <itsjamil gmail com>
-
- * bn.po: Updated Bengali Translation.
-
-2007-09-12 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru.po: Updated Russian translation.
-
-2007-09-12 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2007-09-11 Maxim Dziumanenko <dziumanenko gmail com>
-
- * uk.po: Update Ukrainian translation.
-
-2007-09-11 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-09-11 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2007-09-10 Danilo Å egan <danilo gnome org>
-
- * sr.po, sr Latn po: Updated Serbian trnslation.
-
-2007-09-10 Vladimer Sichinava <vsichi gnome org>
-
- * ka.po Updated Georgian Transaltion.
-
-2007-09-10 Stéphane Raimbault <stephane raimbault gmail com>
-
- * fr.po: Updated French translation by Christophe Benz, Stéphane
- Raimbault and Claude Paroz.
-
-2007-09-10 Priit Laes <plaes svn gnome org>
-
- * et.po: Updated Estonian translation.
-
-2007-09-10 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2007-09-10 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2007-09-09 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-09-09 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-09-09 Raphael Higino <raphaelh svn gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation
-
-2007-09-09 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-09-08 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-09-04 Kenneth Nielsen <k nielsen81 gmail com>
-
- * da.po: Updated Danish translation
-
-2007-09-03 Runa Bhattacharjee <runabh gmail com>
-
- * bn_IN.po: Updated Bengali India Translation.
-
-2007-09-03 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation by Young-Ho Cha.
-
-2007-09-03 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation, by
- Thomas Gier <info thomasgier de>
-
-2007-09-02 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2007-09-02 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2007-08-30 Inaki Larranaga Murgoitio <dooteo zundan com>
-
- * eu.po: Updated and fixed Basque translation.
-
-2007-08-30 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Fixed wrong translations.
-
-2007-08-29 I. Felix <ifelix svn gnome org>
-
- * ta.po: Tamil Translation updated by Tirumurthi Vasudevan
-
-2007-08-28 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-08-28 Ani Peter <peter ani gmail com>
-
- * ml.po: Updated Malayalam Translation
-
-2007-08-28 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-08-27 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated zh_CN translation.
-
-2007-08-26 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2007-08-26 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-08-23 Raphael Higino <raphaelh svn gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation
- by Luiz Armesto <luiz armesto gmail com>.
-
-2007-08-23 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2007-08-23 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2007-08-21 Priit Laes <plaes svn gnome org>
-
- * et.po: Estonian translation updates by Ivar Smolin <okul linux ee>
-
-2007-08-19 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-08-19 Jens Granseuer <jensgr gmx net>
-
- * POTFILES.skip: Fixed paths for appearance data files. Closes bug
- #467948.
-
-2007-08-19 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-08-18 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-08-18 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-08-18 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-08-17 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2007-08-16 Priit Laes <plaes svn gnome org>
-
- * et.po: Estonian translation update by Ivar Smolin.
-
-2007-08-16 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2007-08-15 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation, fix #444913.
-
-2007-08-15 Hendrik Richter <hendrikr gnome org>
-
- * de.po: intltool-update de
-
-2007-08-14 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-08-14 I. Felix <ifelix svn gnome org>
-
- * ta.po: Tamil Translation updated by Tirumurthi Vasudevan
-
-2007-08-14 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-08-13 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-08-13 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-08-12 Jens Granseuer <jensgr gmx net>
-
- * POTFILES.in: Added missing files.
-
-2007-08-12 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2007-08-09 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-08-08 Danishka Navin <danishka gmail com>
-
- * si.po: Added and Updated Sinhala Translation by Danishka Navin.
-
-2007-08-07 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-08-07 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2007-08-07 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek Translation.
-
-2007-08-06 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-08-06 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2007-08-04 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2007-08-03 Inaki Larranaga Murgoitio <dooteo zundan com>
-
- * eu.po: Updated Basque translation.
-
-2007-08-03 I. Felix <ifelix svn gnome org>
-
- * ta.po: Tamil Translation updated by Tirumurthi Vasudevan
-
-2007-08-03 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-08-02 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-08-02 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-08-01 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-07-31 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-07-30 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-07-30 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-07-29 Jens Granseuer <jensgr gmx net>
-
- * POTFILES.in:
- * POTFILES.skip: remove spurious AT desktop entries
-
-2007-07-27 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-07-26 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2007-07-26 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-07-25 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-07-24 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-07-24 Thomas Wood <thos gnome org>
-
- * POTFILES.in: Update for recent appearance re-organisation
-
-2007-07-24 Priit Laes <plaes svn gnome org>
-
- * et.po: Estonian translation update by Ivar Smolin.
-
-2007-07-21 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-07-18 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2007-07-18 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2007-07-17 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-07-16 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-07-15 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-07-14 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-07-13 Priit Laes <plaes svn gnome org>
-
- * et.po: Estonian translation update by Ivar Smolin.
-
-2007-07-12 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-07-11 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2007-07-11 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2007-07-11 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-07-10 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2007-07-09 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-07-06 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-07-04 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2007-07-03 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-07-02 Nguy�n Thái Ng�c Duy <pclouds gmail com>
-
- * vi.po: Updated Vietnamese translation.
-
-2007-07-01 Nguy�n Thái Ng�c Duy <pclouds gmail com>
-
- * vi.po: Updated Vietnamese translation.
-
-2007-06-30 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Fixed typo in Brazilian Portuguese translation.
-
-2007-06-29 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-06-29 Pema geyleg <pema geyleg gmail com>
-
- * dz.po: Updated dzongkha translation
-
-2007-06-28 Priit Laes <plaes svn gnome org>
-
- * et.po: Estonian translation update by Ivar Smolin.
-
-2007-06-27 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-06-27 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2007-06-26 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2007-06-25 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-06-24 Jens Granseuer <jensgr gmx net>
-
- * POTFILES.in: Added theme-save.c
-
-2007-06-24 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-06-23 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-06-23 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-06-23 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-06-21 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2007-06-19 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-06-19 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2007-06-18 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2007-06-18 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-06-17 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-06-16 Jens Granseuer <jensgr gmx net>
-
- * POTFILES.in:
- * POTFILES.skip: updated lists again
-
-2007-06-15 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-06-13 Pema Geyleg <pema geyleg gmail com>
-
- * dz.po: Updated dzongkha translation.
-
-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
-
-2007-06-11 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated Simplified Chinese translation
-
-2007-06-10 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-06-08 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated spanish translation.
-
-2007-06-04 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated spanish translation.
-
-2007-06-04 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2007-06-04 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-06-03 Jens Granseuer <jensgr gmx net>
-
- * POTFILES.in:
- * POTFILES.skip: Updated files list
-
-2007-05-30 Priit Laes <plaes svn gnome org>
-
- * et.po: Updated Estonian translation by Ivar Smolin <okul linux ee>.
-
-2007-05-30 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2007-05-29 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-05-28 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-05-27 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-05-22 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2007-05-22 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-05-19 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Fixes in Brazilian Portuguese translation by Raul Pereira
- <contato raulpereira com>.
-
-2007-05-18 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-05-15 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation
-
-2007-05-14 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-05-08 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-05-08 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-05-08 Alexander Shopov <ash contact bg>
-
- * bg.po: 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>
-
-2007-05-07 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-05-06 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-05-04 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-04-27 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation
-
-2007-04-26 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2007-04-25 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation
-
-2007-04-23 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
- * POTFILES.in: Added missing files.
-
-2007-04-23 Jorge Gonzalez <jorgegonz svn gnome org>
-
- * es.po: Updated Spanish translation
-
-2007-04-23 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation
-
-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>).
-
-2007-04-21 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
- * POTFILES.in: Added missing files.
-
-2007-04-18 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation
-
-2007-04-16 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Fixed Czech sound names
-
-2007-04-16 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Merged sound names from SUSE's gnome-patch-translation.cs.po
-
-2007-04-15 Funda Wang <fundawang gmail com>
-
- * zh_CN.po: Updated Simplified Chinese translation from Yang Zhang.
-
-2007-04-14 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by .
-
-2007-04-12 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2007-04-12 Priit Laes <plaes svn gnome org>
-
- * et.po: Updated Estonian translation by Ivar Smolin <okul linux ee>.
-
-2007-04-10 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-04-05 Bastien Nocera <hadess hadess net>
-
- * POTFILES.in: Updated for removed files
-
-2007-03-29 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated and fixed Portuguese translation.
-
-2007-03-25 Raivis Dejus <orvils gmail com>
-
- * lv.po: Updated Latvian Translation.
-
-2007-03-20 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2007-03-19 Pema Geyleg <pema geyleg gmail com>
-
- * dz.po: Updated Dzongkha Translation.
-
-2007-03-17 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2007-03-15 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dess? <alkex inwind it>.
-
-2007-03-11 Goran RakiÄ? <grakic devbase net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2007-03-10 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-03-10 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2007-03-10 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Tino Meinen.
-
-2007-03-09 Nikos Charonitakis <nikosx gmail com>
-
- * el.po: Updated Greek translation.
-
-2007-03-09 Gintautas Miliauskas <gintas akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2007-03-08 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2007-03-07 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-03-06 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2007-03-06 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation, by
- Christian Kintner <mail christian-kintner de>
-
-2007-03-06 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2007-03-04 Erdal Ronahi <erdal ronahi gmail com>
-
- * ku.po: Updated Kurdish translation
-
-2007-03-03 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-03-02 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2007-03-01 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2007-02-28 Matic Zgur <mr zgur gmail com>
-
- * sl.po: Updated Slovenian translation.
-
-2007-02-28 Artur Flinta <aflinta svn gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2007-02-27 Abel Cheung <abelcheung gmail com>
-
- * zh_HK.po, zh_TW.po: Updated traditional Chinese translation by
- Woodman Tuen <wmtuen gmail com>.
-
-2007-02-27 Gintautas Miliauskas <gintas akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2007-02-26 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Czech translation updated.
-
-2007-02-25 Priit Laes <plaes svn gnome org>
-
- * et.po: Updated Estonian translation by Ivar Smolin <okul linux ee>.
-
-2007-02-24 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-02-25 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2007-02-23 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-02-23 Nguy�n Thái Ng�c Duy <pclouds gmail com>
-
- * vi.po: Updated Vietnamese translation
-
-2007-02-23 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2007-02-22 Stéphane Raimbault <stephane raimbault gmail com>
-
- * fr.po: Updated French translation.
-
-2007-02-22 Maxim Dziumanenko <dziumanenko gmail com>
-
- * uk.po: Update Ukrainian translation.
-
-2007-02-22 Abel Cheung <abelcheung gmail com>
-
- * zh_CN.po: Updated simplified Chinese translation on behalf of
- Funda Wang.
-
-2007-02-22 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese by Og Maciel
- <ogmaciel ubuntu com>.
-
-2007-02-21 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-02-20 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-02-18 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2007-02-18 Priit Laes <plaes svn gnome org>
-
- * et.po: Updated Estonian translation by Ivar Smolin <okul linux ee>.
-
-2007-02-16 David Lodge <dave cirt net>
-
- * en_GB.po: Updated English (British) translation
-
-2007-02-16 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2007-02-16 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Djihed Afifi.
-
-2007-02-16 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-02-15 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2007-02-14 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-02-14 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2007-02-13 Stéphane Raimbault <stephane raimbault gmail com>
-
- * fr.po: Updated French translation.
-
-2007-02-13 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
- * POTFILES.in: Added missing file.
-
-2007-02-12 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2007-02-12 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2007-02-11 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2007-02-11 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-02-10 Leonardo Ferreira Fontenelle <leonardof svn gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation by Luiz Fernando
- S. Armesto <luiz armesto gmail com>.
-
-2007-02-09 Stéphane Raimbault <stephane raimbault gmail com>
-
- * fr.po: Updated French translation by Jonathan Ernst and Stéphane
- Raimbault.
-
-2007-02-9 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2007-02-09 David Lodge <dave cirt net>
-
- * en_GB.po: Updated English (British) translation
-
-2007-02-09 Ihar Hrachyshka <iharh gnome org>
-
- * be.po: Updated Belarusian translation.
-
-2007-02-09 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2007-02-08 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2007-02-08 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-02-07 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2007-02-07 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-02-07 Jordi Mas <jmas softcatala org>
-
- * ca.po: Catalan translation fixes
-
-2007-02-06 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2007-02-05 Artur Flinta <aflinta gmail com>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-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.
-
-2007-02-04 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-02-04 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation by Young-Ho Cha.
-
-2007-02-03 Ihar Hrachyshka <iharh gnome org>
-
- * be.po: Updated Belarusian translation.
-
-2007-02-03 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-02-02 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-01-31 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2007-01-31 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2007-01-30 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-01-30 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2007-01-28 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2007-01-28 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-01-27 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
- * POTFILES.in: Added missing files.
-
-2007-01-26 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Yavor Doganov <yavor doganov org>
-
-2007-01-25 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-01-24 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-01-23 David Lodge <dave cirt net>
-
- * en_GB.po: Updated English (British) translation
-
-2007-01-23 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-01-23 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-01-23 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2007-01-23 Priit Laes <plaes svn gnome org>
-
- * et.po: Updated Estonian translation by Ivar Smolin <okul linux ee>.
-
-2007-01-22 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2007-01-21 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2007-01-19 Priit Laes <plaes svn gnome org>
-
- * et.po: Estonian translation update by Ivar Smolin.
-
-2007-01-17 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-01-17 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-01-16 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2007-01-15 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2007-01-13 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2007-01-13 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Khaled Hosny.
-
-2007-01-12 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-01-10 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-01-10 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2007-01-09 Jan Arne Petersen <jpetersen jpetersen org>
-
- * POTFILES.in: Add capplets/sound/mixer-support.c.
-
-2007-01-09 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2007-01-09 Matic Zgur <mr zgur gmail com>
-
- * sl.po: Updated Slovenian translation.
-
-2007-01-09 David Lodge <dave cirt net>
-
- * en_GB.po: Updated English (British) translation
-
-2007-01-08 Matic Zgur <mr zgur gmail com>
-
- * sl.po: Updated Slovenian translation.
-
-2007-01-08 Thomas Wood <thos gnome org>
-
- Patch by: Alberto Ruiz <aruiz synaptia net>
-
- * POTFILES.in:
-
- Add support for opening .gtp (application/x-gnome-theme-package) files.
- Fixes bug 393697 (Theme packages should have their own mime type.)
-
-2007-01-08 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation
-
-2007-01-08 David Lodge <dave cirt net>
-
- * en_GB.po: Updated English (British) translation
-
-2007-01-07 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2007-01-06 Gabor Kelemen <kelemeng gnome hu>
-
- * POTFILES.skip: removed bunch of desktop.in files.
-
-2007-01-06 Gabor Kelemen <kelemeng gnome hu>
-
- * POTFILES.in: removed libgswitchit files.
-
-2007-01-06 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2007-01-3 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation by Mohamed Magdy.
-
-2006-12-29 David Lodge <dave cirt net>
-
- * en_GB.po: Updated English (British) translation
-
-2006-12-29 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-12-28 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: 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.
-
-2006-12-25 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2006-12-25 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2006-12-24 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation.
-
-2006-12-20 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-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
-
-2006-12-19 Raivis Dejus <orvils gmail com>
-
- * lv.po: Updated Latvian Translation.
-
-2006-12-19 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-12-18 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-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.
-
-2006-12-18 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-12-17 Djihed Afifi <djihed gmail com>
-
- * ar.po: Updated Arabic Translation.
-
-2006-12-17 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish tranlation.
-
-2006-12-16 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-12-16 Matic Zgur <mr zgur gmail com>
-
- * sl.po: Updated Slovenian translation.
-
-2006-12-14 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2006-12-12 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2006-12-05 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Tino Meinen.
-
-2006-12-11 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2006-12-11 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-12-09 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-12-07 Raivis Dejus <orvils gmail com>
-
- * lv.po: Updated Latvian Translation.
-
-2006-12-07 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-12-06 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-12-04 Rodrigo Moya <rodrigo novell com>
-
- * POTFILES.in: removed unused files.
-
-2006-11-19 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-11-16 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Translation updated.
- * POTFILES.in: Fix removed schemas/desktop_gnome_peripherals_keyboard_xkb.schemas
-
-
-2006-11-11 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-10-31 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: fix a broken filename
- * nb.po: Update.
-
-2006-10-30 Satoru SATOH <ss gnome gr jp>
-
- * ja.po: Fixed wrong plural form entries.
-
-2006-10-29 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated.
-
-2006-10-16 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2006-10-15 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-10-15 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-10-04 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Czech translation updated.
-
-2006-10-02 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-09-28 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated.
-
-2006-09-25 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-09-21 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-09-17 �smund Skjæveland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2006-09-13 Runa Bhattacharjee <runabh gmail com>
-
- * bn_IN.po: Fixed a Typo.
-
-2006-09-08 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-09-06 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-09-04 Runa Bhattacharjee <runabh gmail com>
-
- * bn_IN.po: Updated Bengali India Translation.
-
-2006-09-03 Lucas Rocha <lucasr gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation
- by Leonardo Ferreira Fontenelle <leo fontenelle gmail com>
-
-2006-09-03 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-09-03 Abel Cheung <abel oaka org>
-
- * zh_HK.po: Updated Chinese (Hong Kong) translation.
- * zh_TW.po: Updated Chinese (Taiwan) translation.
-
-2006-09-03 Abel Cheung <abel oaka org>
-
- * 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>.
-
-2006-09-03 Ani Peter <peter ani gmail com>
-
- * ml.po: Updated Malayalam Translation
-
-2006-09-02 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek Translation
-
-2006-09-01 I. Felix <ifelix25 gmail com>
-
- * ta.po: Updated Tamil Translation.
-
-2006-09-01 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-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).
-
-2006-08-31 Rajesh Ranjan <rajeshkajha yahoo com>
-
- * hi.po: Updated Hindi Translation.
-
-2006-08-31 Subhransu Behera <arya_subhransu yahoo co in>
-
- * or.po: Updated Oriya Translation.
-
-2006-08-31 Ani Peter <peter ani gmail com>
-
- * ml.po: Updated Malayalam translation
-
-2006-08-30 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2006-08-30 Subhransu Behera <arya_subhransu yahoo co in>
-
- * or.po: Updated Oriya Translation.
-
-2006-08-30 Ani Peter <peter ani gmail com>
-
- * ml.po: Updated Malayalam Translation
-
-2006-08-30 Rajesh Ranjan <rajeshkajha yahoo com>
-
- * hi.po: Updated Hindi Translation.
-
-2006-08-30 Subhransu Behera <arya_subhransu yahoo co in>
-
- * or.po: Updated Oriya Translation.
-
-2006-08-30 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated.
-
-2006-08-29 Gintautas Miliauskas <gintas akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2006-08-29 Vladimer Sichinava <vlsichinava gmail com>
-
- * ka.po: Updated Georgian translation.
-
-2006-08-29 Rajesh Ranjan <rajeshkajha yahoo com>
-
- * hi.po: Updated Hindi Translation.
-
-2006-08-28 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-08-27 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-08-25 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation from
- Damien Durand <splinux fedoralinux org>.
-
-2006-08-24 Raivis Dejus <orvils gmail com>
-
- * lv.po: Updated Latvian translation.
-
-2006-08-23 Rahul Bhalerao <b rahul pm gmail com>
-
- * mr.po: Updated Marathi translation
-
-2006-08-22 Leonid Kanter <leon aspliux ru>
-
- * ru.po: Updated Russian translation
-
-2006-08-22 Matic Žgur <mr zgur gmail com>
-
- * sl.po: Updated Slovenian translation.
-
-2006-08-21 Subhransu Behera <arya_subhransu yahoo co in>
-
- * or.po: Added and Updated Oriya Translation.
-
-2006-08-21 Rahul Bhalerao <b rahul pm gmail com>
-
- * mr.po: Updated Marathi translation
-
-2006-08-20 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-08-20 Rahul Bhalerao <b rahul pm gmail com>
-
- * mr.po: Updated Marathi translation
-
-2006-08-18 Wouter Bolsterlee <uws+gnome xs4all nl>
-
- * nl.po: Translation updated by Wouter Bolsterlee.
-
-2006-08-17 Satoru SATOH <ss gnome gr jp>
-
- * ja.po: Updated Japanese Translation.
-
-2006-08-16 Matic Žgur <mr zgur gmail com>
-
- * sl.po: Updated Slovenian translation.
-
-2006-08-16 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2006-08-16 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Translation updated by Mate ORY.
-
-2006-08-16 Sanlig Badral <badral openmn org>
-
- * mn.po: Updated Mongolian translation.
-
-2006-08-15 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-08-14 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-08-14 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-08-14 Maxim Dziumanenko <dziumanenko gmail com>
-
- * uk.po: Update Ukrainian translation.
-
-2006-08-13 Rahul Bhalerao <b rahul pm gmail com>
-
- * mr.po: Updated Marathi translation
-
-2006-08-12 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-08-12 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2006-08-11 Ani Peter <peter ani gmail com>
-
- * ml.po: Updated Malayalam translation
-
-2006-08-11 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2006-08-10 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-08-10 Guntupalli Karunakar <karunakar freedomink org>
-
- * dz.po: Updated Dzongkha translation by
- Dzongkhalinux team, DIT
-
-2006-08-09 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2006-08-09 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-08-08 Wouter Bolsterlee <uws+gnome xs4all nl>
-
- * nl.po: Translation updated by Wouter Bolsterlee.
-
-2006-08-08 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-08-08 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2006-08-07 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-08-07 Inaki Larranaga <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2006-08-07 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-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).
-
-2006-08-04 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2006-08-03 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2006-08-01 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian translation.
-
-2006-07-31 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Tino Meinen.
-
-2006-07-30 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2006-07-30 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2006-07-29 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-07-28 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-07-28 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-07-27 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-07-26 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
- * POTFILES.in: Removed unused file
-
-2006-07-26 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-07-25 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-07-25 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-07-25 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-07-24 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-07-24 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2006-07-24 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2006-07-23 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation from
- Samuel Mutel <samuel mutel free fr>.
-
-2006-07-23 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2006-07-22 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2006-07-22 Satoru SATOH <ss gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2006-07-21 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-07-20 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-07-20 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2006-07-18 Guntupalli Karunakar <karunakar freedomink org>
-
- * dz.po: Updated Dzongkha translation by
- Dzongkhalinux team, DIT
-
-2006-07-18 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2006-07-17 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-07-17 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-07-16 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-07-16 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2006-07-14 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-07-14 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-07-13 Ahmad Riza H Nst <rizahnst eriagempita co id>
-
- * id.po: Updated.
-
-2006-07-12 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-07-11 Sebastien Bacher <seb128 debian org>
-
- * POTFILES.in: don't list libgswitchit/gswitchit_config.c
-
-2006-07-03 Runa Bhattacharjee <runabh gmail com>
-
- * bn_IN.po: Added Bengali India Translation
-
-2006-07-02 Benoît Dejean <benoit placenet org>
-
- * fr.po: Updated French translation.
-
-2006-07-01 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-06-30 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru.po: Updated Russian translation.
-
-2006-06-29 Rajesh Ranjan <rajeshkajha yahoo com>
-
- * hi.po: Updated Hindi Translation.
-
-2006-06-28 I. Felix <ifelix25 gmail com>
-
- * ta.po: Updated Tamil translation.
-
-2006-06-27 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation.
-
-2006-06-27 Jovan Naumovski <jovan lugola net>
-
- * mk.po: Updated Macedonian Translation.
-
-2006-06-26 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2006-06-20 Raivis Dejus <orvils gmail com>
-
- * lv.po: Updated Latvian translation.
-
-2006-06-19 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2006-06-16 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-06-15 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2006-06-15 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2006-06-15 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2006-06-14 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish tranlation.
-
-2006-06-14 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-06-12 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2006-06-06 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Updated Czech translation.
-
-2006-06-04 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-05-30 Pema Geyleg <pema geyleg gmail com>
-
- * dz.po: Updated Dzongkha translation.
-
-2006-05-29 Simos Xenitellis <simos gnome org>
-
- * mg.po: Added Malagasy translation by Thierry Randrianiriana.
-
-2006-05-29 Francisco Javier F. Serrador <serrador openshine com>
-
- * es.po: Updated Spanish translation.
-
-2006-05-29 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-05-29 Pema Geyleg <pema geyleg gmail com>
-
- * dz.po: Updated Dzongkha translation.
-
-2006-05-29 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
-
-2006-05-28 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-05-25 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-05-20 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-05-19 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-05-18 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-05-17 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-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).
-
-2006-05-08 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-05-06 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-05-05 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
- * POTFILES.in: Removed obsolete files.
-
-2006-04-29 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-04-24 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-04-23 Lukas Novotny <lukasnov cvs gnome org>
-
- * cs.po: Updated Czech translation.
-
-2006-04-21 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-04-20 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-04-19 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2006-04-18 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-04-17 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-04-16 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-04-14 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation by Petr Tomeš.
-
-2006-04-14 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-04-14 Daniel Nylander <po danielnylander se>
-
- * sv.po: Updated Swedish translation.
-
-2006-04-13 Pema Geyleg <pema geyleg gmail com>
-
- * dz.po: Updated Dzongkha translation.
-
-2006-04-10 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-04-06 Wouter Bolsterlee <uws+gnome xs4all nl>
-
- * nl.po: Translation updated by Wouter Bolsterlee.
-
-2006-04-03 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-03-30 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Added Lithuanian pangram.
-
-2006-03-26 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation by Petr Tomeš.
-
-2006-03-25 Priit Laes <amd store20 com>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-03-24 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated by Mate ORY.
-
-2006-03-23 Ales Nyakhaychyk <nab mail by>
-
- * be.po: Updated Belarusian translation by Ihar Hrachyshka.
-
-2006-03-22 Jérémy Ar Floc'h <jeremy lefloch gmail com>
-
- * br.po: Added Breton translation.
-
-2006-03-22 Tommi Vainikainen <thv iki fi>
-
- * dz.po: Added Dzongkha translation from Pema Geyleg.
-
-2006-03-20 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Wouter Bolsterlee.
-
-2006-03-17 Priit Laes <amd store20 com>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-03-14 Dan Damian <dand gnome ro>
-
- * ro.po: Updated Romanian translation.
-
-2006-03-14 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-03-13 Runa Bhattacharjee <runa bengalinux org>
-
- * bn.po: Updated Bengali Translation by Progga
-
-2006-03-12 Lucas Rocha <lucasr gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2006-03-12 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation by Petr Tomeš.
-
-2006-03-12 Roozbeh Pournader <roozbeh farsiweb info>
-
- * fa.po: Updated Persian translation by Elnaz Sarbar and Farzaneh
- Sarafraz.
-
-2006-03-11 Priit Laes <amd store20 com>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-03-11 Danilo Å egan <danilo gnome org>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2006-03-11 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2006-03-10 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-03-10 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-03-09 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2006-03-09 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2006-03-08 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2006-03-08 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2006-03-08 Kjartan Maraas <kmaraas gnome org>
-
- * nn.po: Updated Norwegian nynorsk translation.
-
-2006-03-08 Rhys Jones <rhys sucs org>
-
- * cy.po: Updated Welsh translation.
-
-2006-03-08 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated by Mate ORY.
-
-2006-03-08 Hendrik Brandt <heb gnome-de org>
-
- * de.po: Updated German translation.
-
-2006-03-07 Daniel Nylander <po danielnylander se>
-
- * sv.po: Swedish translation updated.
-
-2006-03-07 Priit Laes <amd store20 com>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-03-07 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Wouter Bolsterlee.
-
-2006-03-06 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-03-06 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Tino Meinen.
-
-2006-03-06 Maxim Dziumanenko <mvd mylinux ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2006-02-01 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-03-05 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-03-05 Luca Ferretti <elle uca libero it>
-
- * it.po: Fixed a typo
-
-2006-03-05 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2006-03-05 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2006-03-05 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same.
-
-2006-03-05 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-03-05 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-03-05 Satoru SATOH <ss gnome gr jp>
-
- * ja.po: Updated Japanese Translation.
-
-2006-03-05 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-03-04 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-03-04 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation
-
-2006-03-04 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-03-04 Luca Ferretti <elle uca libero it>
-
- * it.po: Updated Italian translation.
-
-2006-03-03 Simos Xenitellis <simos gnome org>
-
- * el.po: Updated Greek translation.
-
-2006-03-03 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2006-03-03 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-03-03 Maxim Dziumanenko <mvd mylinux ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2006-03-01 Hendrik Richter <hendrikr gnome org>
-
- * de.po: Updated German translation.
-
-2006-03-01 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2006-03-01 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2006-02-26 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Tino Meinen.
-
-2006-02-26 Priit Laes <amd store20 com>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-02-25 Rhys Jones <rhys sucs org>
-
- * cy.po: Updated Welsh translation.
-
-2006-02-25 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2006-02-24 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-02-24 Raphael Higino <raphaelh cvs gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2006-02-23 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: minor update.
-
-2006-02-23 Clytie Siddall <clytie riverland net au>
-
- * ka.po: Added Georgian translation by Alexander Didebulidze <didebuli in tum de>.
-
-2006-02-22 Inaki Larranaga <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2006-02-21 Kostas Papadimas <pkst gnome org>
-
- * el.po Updated Greek Translation
-
-2006-02-21 Slobodan D. Sredojevic <slobo akrep be>
-
- * sr.po, sr Latn po: Updated Serbian translation
-
-2006-02-21 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-02-20 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-02-19 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same.
-
-2006-02-19 Takeshi AIHANA <takeshi aihana gmail com>
-
- * ja.po: Updated Japanese translation.
-
-2006-02-18 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-02-18 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-02-18 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-02-18 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-02-18 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-02-17 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated by Mate ORY.
-
-2006-02-17 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek Translation.
-
-2006-02-17 Satoru SATOH <ss gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2006-02-16 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-02-16 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2006-02-15 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2006-02-15 Jakub Friedl <jfriedl suse cz>
-
- * cs.po: Minor fix in Czech translation.
-
-2006-02-15 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-02-14 Hendrik Richter <hendi gnome-de org>
-
- * de.po: Updated German translation.
-
-2006-02-14 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same.
-
-2006-02-14 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-02-14 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2006-02-13 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-02-12 Ole Laursen <olau hardworking dk>
-
- * da.po: Fixed a couple of bugs in Danish translation.
-
-2006-02-12 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-02-12 Hendrik Richter <hendi gnome-de org>
-
- * de.po: Updated German translation.
-
-2006-02-12 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2006-02-12 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-02-11 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-02-10 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation
- (käyttäjä_tunnus: -> käyttäjätunnus::)
-
-2006-02-09 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Tino Meinen.
-
-2006-02-07 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-02-05 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-02-04 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2006-02-03 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same.
-
-2006-01-31 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2006-01-31 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-01-31 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2006-01-31 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2006-01-31 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-01-31 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Rostislav Raykov <zbrox i-space org>
-
-2006-01-31 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-31 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-01-30 Slobodan D. Sredojevic <slobo akrep be>
-
- * sr.po, sr Latn po: Updated Serbian translation
-
-2006-01-30 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-01-30 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-01-29 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-01-29 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru.po: Updated Russian translation by
- Maxim Popov <ravemax hotbox ru>.
-
-2006-01-29 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated.
-
-2006-01-29 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-01-29 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-01-29 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2006-01-29 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-29 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-01-28 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-27 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-01-27 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2006-01-27 Kostas Papadimas <pkst gnome org>
-
- * el.po Updated Greek Translation
-
-2006-01-27 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-27 Lasse Bang Mikkelsen <lbm fatalerror dk>
-
- * da.po: Updated Danish translation.
-
-2006-01-27 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2006-01-27 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-01-26 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2006-01-26 Lasse Bang Mikkelsen <lbm fatalerror dk>
-
- * da.po: Updated Danish translation.
-
-2006-01-26 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-01-26 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2006-01-26 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-01-24 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-01-24 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-22 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same
-
-2006-01-23 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2006-01-23 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-01-23 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-01-22 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-01-22 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2006-01-22 Luca Ferretti <elle uca libero it>
-
- * it.po: "Backported" Italian translation from stable.
-
-2006-01-22 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-01-22 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-01-21 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-01-21 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-01-20 Lasse Bang Mikkelsen <lbm fatalerror dk>
-
- * da.po: Updated Danish translation.
-
-2006-01-21 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2006-01-20 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2006-01-19 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2006-01-19 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-18 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-01-18 Slobodan D. Sredojevic <slobo akrep be>
-
- * sr.po, sr Latn po: Updated Serbian translation
-
-2006-01-17 Adam Weinberger <adamw gnome org>
-
- * POTFILES.in: Added missing files.
- * en_CA.po: Updated Canadian English translation.
-
-2006-01-17 Lasse Bang Mikkelsen <lbm fatalerror dk>
-
- * da.po: Updated Danish translation.
-
-2006-01-17 Funda Wang <fundawang linux net cn>
-
- * POTFILES.in: Removed obsolete files.
-
-2006-01-15 Adam Weinberger <adamw gnome org>
-
- * POTFILES.in: Added missing file.
- * en_CA.po: Updated Canadian English translation.
-
-2006-01-15 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Karel Demeyer.
-
-2006-01-15 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-14 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-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).
-
-2006-01-14 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-01-13 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-12 Slobodan D. Sredojevic <slobo akrep be>
-
- * sr.po, sr Latn po: Updated Serbian translation
-
-2006-01-11 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated.
-
-2006-01-11 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2006-01-11 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-01-11 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-01-11 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-10 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-01-09 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2006-01-09 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2006-01-09 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2006-01-09 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2006-01-07 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2006-01-07 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2006-01-06 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same
-
-2006-01-06 Ilkka Tuohela <hile iki fi>
-
- * fi.po: UPdated Finnish translation.
-
-2006-01-05 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2006-01-04 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2006-01-04 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-01-04 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2006-01-02 Josep Puigdemont i Casamajó <josep puigdemont gmail com>
-
- * ca.po: Updated Catalan translation.
-
-2005-12-31 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-12-30 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-12-29 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-12-12 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2005-12-11 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2005-12-07 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-12-06 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-12-03 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-12-03 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same
-
-2005-12-02 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-11-28 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2005-11-27 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-11-26 Guilherme de S. Pastore <gpastore gnome org>
-
- * pt_BR.po: Fixed mistakes in Brazilian Portuguese translation.
-
-2005-11-26 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-11-26 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-11-26 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-11-25 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-11-24 Guilherme de S. Pastore <gpastore gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2005-11-22 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-11-22 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2005-11-22 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2005-11-22 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-11-21 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-11-21 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2005-11-18 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese transaltion.
-
-2005-11-18 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2005-11-18 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same
-
-2005-11-17 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-11-17 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-11-16 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-11-15 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-11-14 Roozbeh Pournader <roozbeh sharif edu>
-
- * fa.po: Updated Persian translation.
- Translator: Meelad Zakaria; Reviewer: Elnaz Sarbar.
-
-2005-11-14 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2005-11-06 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-11-02 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-11-01 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-10-31 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-10-31 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-10-30 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-10-28 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-10-27 Dan Damian <dand gnome ro>
-
- * ro.po: Updated Romanian translation.
-
-2005-10-27 Inaki Larranaga <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2005-10-27 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-10-25 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-10-23 Adam Weinberger <adamw gnome org>
-
- * POTFILES.in: Added missing files.
- * en_CA.po: Updated Canadian English translation.
-
-2005-10-21 Guilherme de S. Pastore <gpastore gnome org>
-
- * pt_BR.po: General fixes to the Brazilian
- Portuguese translation.
-
-2005-10-21 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2005-10-21 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-10-13 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-10-08 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-10-06 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2005-10-04 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-09-29 Christian Rose <menthos menthos com>
-
- * sv.po: Reverted unauthorized changes made by
- user 'kloczek'.
-
-2005-09-28 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2005-09-27 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2005-09-24 Erdal Ronahi <erdal ronahi gmail com>
-
- * ku.po: Added new Kurdish translation.
-
-2005-09-21 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-09-19 Stanislav Brabec <sbrabec suse cz>
-
- * cs.po: Fixed spelling error (#316546).
-
-2005-09-16 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-09-14 Runa Bhattacharjee <runa bengalinux org>
- * bn.po: Updated Bengali (bn) Translation by
- Progga <progga bengalinux org>
-
-2005-09-09 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-09-07 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-09-07 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2005-09-07 Inaki Larranaga <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2005-09-07 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Yavor Doganov <yavor doganov org>
-
-2005-09-04 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2005-09-03 Danilo Å egan <danilo gnome org>
-
- * sr.po, sr Latn po: Updated.
-
-2005-09-02 Marcel Telka <marcel telka sk>
-
- * sk.po: Fixed typo (thanks to Sergej Chodarev).
-
-2005-09-01 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish Translation
-
-2005-09-01 Rhys Jones <rhys sucs org>
-
- * cy.po: Updated Welsh translation.
-
-2005-09-01 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-08-30 Hendrik Richter <hendi gnome-de org>
-
- * de.po: Updated German translation.
-
-2005-08-30 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation from
- Vincent Untz <vuntz gnome org>.
-
-2005-08-29 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-08-29 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2005-08-29 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2005-08-29 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation by Young-Ho Cha.
-
-2005-08-27 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation
- by Xavier Conde <xavi conde gmail com>.
-
-2005-08-27 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-08-27 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-08-24 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Fixed Russian translation.
-
-2005-08-24 Nickolay V. Shmyrev <nshmyrev yandex ru>
-
- * ru.po: Updated Russian translation.
-
-2005-08-24 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-08-24 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-08-23 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated.
-
-2005-08-23 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2005-08-23 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-08-22 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-08-22 Dan Damian <dand gnome ro>
-
- * ro.po: Updated Romanian translation by
- Sebastian Ivan.
-
-2005-08-21 Maxim Dziumanenko <mvd mylinux ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2005-08-19 Jens Seidel <jseidel cvs gnome org>
-
- * de.po: Fixed a typo.
-
-2005-08-17 Chao-Hsiung Liao <j_h_liau yahoo com tw>
-
- * zh_TW.po: Updated Traditional Chinese translation.
-
-2005-08-16 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-08-15 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated.
-
-2005-08-14 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-08-14 Mohammad DAMT <mdamt gnome org>
-
- * id.po: Updated Indonesian translation.
-
-2005-08-14 Terance Sola <terance lyse net>
-
- * nb.po: Updated Norwegian bokmål translation.
- * no.po: Same.
-
-2005-08-11 Kostas Papadimas <pkst gnome org>
-
- * el.po Updated Greek Translation
-
-2005-08-11 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-08-11 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2005-08-10 Mohammad DAMT <mdamt gnome org>
-
- * id.po: Updated Indonesian translation
-
-2005-08-10 Žygimantas BeruÄ?ka <zygis gnome org>
-
- * lt.po: Updated Lithuanian translation by Justina KlingaitÄ? and
- myself.
-
-2005-08-10 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-08-08 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2005-08-07 Terance Sola <terance lyse net>
-
- * nb.po: Updated Norwegian bokÃ?mÃ?Â¥l translation.
- * no.po: Same.
-
-2005-08-07 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2005-08-07 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-08-07 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-08-07 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-08-07 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-08-06 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-08-06 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Rostislav Raykov <zbrox i-space org>
-
-2005-08-05 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-08-05 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2002-10-04 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-08-04 Sunil Mohan Adapa <sunil atc tcs co in>
-
- * te.po: Added Telugu translation done by
- Prajasakti Localisation Team
- <localisation prajasakti com>
-
-2005-08-04 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated.
-
-2005-08-03 Danilo � egan <danilo gnome org>
-
- * sr.po, sr Latn po: Updated by Slobo SredojeviÃ?Â?.
-
-2005-08-03 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmÃ?Â¥l translation.
- * no.po: Same
-
-2005-08-02 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Minor spelling fixes in Thai translation.
-
-2005-08-01 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated.
-
-2005-07-31 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-07-31 Yair Hershkovitz <yairhr gmail com>
-
- * he.po: Updated Hebrew translation by Yuval Tanai.
-
-2005-07-31 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2005-07-30 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-07-30 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-07-30 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated spanish translation.
-
-2005-07-28 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2005-07-28 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-07-28 Terance Sola <terance lyse net>
-
- * nb.po: Updated Norwegian BokmÃ?Â¥l translation.
- * no.po: Same.
-
-2005-07-27 Hendrik Brandt <heb gnome-de org>
-
- * de.po: Updated German translation.
-
-2005-07-27 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-07-27 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2005-07-27 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-07-26 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-07-26 Adam Weinberger <adamw gnome org>
-
- * POTFILES.skip: Remove missing files.
- * en_CA.po: Updated Canadian English translation.
-
-2005-07-24 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian bokmï¿Å?l translation.
- * no.po: Same
-
-2005-07-23 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-07-22 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-07-22 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Rostislav Raykov <zbrox i-space org>
-
-2005-07-22 Nikos Charonitakis <charosn her forthnet gr>
-
- * el.po: Updated Greek translation.
-
-2005-07-22 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Minor wording adjustments in Thai translation.
-
-2005-07-21 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated.
-
-2005-07-18 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-07-18 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-07-18 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-07-18 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2005-07-17 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-07-17 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-07-17 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-07-16 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated Norwegian translation.
- * no.po: Same
-
-2005-07-16 Clytie Siddall <clytie riverland net au>
-
- * vi.po: Updated Vietnamese translation.
-
-2005-07-16 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-07-15 Ignacio Casal Quinteiro <nacho resa gmail com>
-
- * gl.po: Updated Galician Translation.
-
-2005-07-14 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-07-13 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-07-11 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-07-10 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-07-10 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-07-10 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-07-10 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Fixed plurals in Thai translation.
-
-2005-07-10 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-07-09 Terance Sola <terance lyse net>
-
- * nb.po: Updated Norwegian bokmï¿Å?l translation.
- * no.po: Same.
-
-2005-07-08 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-07-08 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-07-07 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-07-08 Sebastien Bacher <seb128 debian org>
-
- * POTFILES.in:
- * POTFILES.skip:
- Update of the list of files to translate.
-
-2005-07-07 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-07-07 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2004-07-06 Christian Rose <menthos menthos com>
-
- * gl.po: Updated Galician translation by
- Ignacio Casal Quinteiro <nacho resa gmail com>.
-
-2005-07-06 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-07-05 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-07-04 Hendrik Richter <hendi gnome-de org>
-
- * de.po: Fixed German translation by
- Jens Seidel <jensseidel users sf net>.
-
-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>.
-
-2005-07-03 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-07-02 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-07-01 Abel Cheung <maddog linuxhall org>
-
- * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team
-
-2005-07-01 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2005-06-30 Terance Sola <terance lyse net>
-
- * nb.po: Updated Norwegian Bokmaal translation.
- * no.po:
-
-2005-06-28 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-06-27 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-06-27 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-06-26 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing file entries.
- * sv.po: Updated Swedish translation.
-
-2005-06-26 Christian Rose <menthos menthos com>
-
- * sv.po: Change in terminology for subpixel antialiasing.
- Fixes bug #136545.
-
-2005-06-22 Abel Cheung <maddog linuxhall org>
-
- * zh_TW.po: Fix language team reference.
-
-2005-06-17 Hendrik Richter <hendi gnome-de org>
-
- * de.po: Updated German translation.
-
-2005-06-14 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-06-13 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-06-10 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2005-06-06 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-06-05 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Fixed a typo in Italian translation.
-
-2005-06-03 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-06-01 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2005-05-29 Rhys Jones <rhys sucs org>
-
- * cy.po: Updated Welsh translation.
-
-2005-05-29 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-05-24 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Update
- * no.po: Update
-
-2005-05-23 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-05-23 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-05-21 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-05-21 Iaki Larraaga <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2005-05-20 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-05-19 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-05-19 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-05-13 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated.
-
-2005-05-12 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-05-12 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-05-12 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2005-05-11 Kostas Papadimas <pkst gnome org>
-
- *el.po Updated Greek Translation
-
-2005-04-29 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-04-28 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation
-
-2005-04-28 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation
-
-2005-04-25 Gabor Kelemen <kelemeng gnome hu>
-
- * hu.po: Hungarian translation updated.
-
-2005-04-12 Iaki Larraaga <dooteo euskalgnu org>
-
- * eu.po: Updated Basque translation.
-
-2005-04-06 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2005-03-31 Steve Murphy <murf e-tools com>
-
- * rw.po: Added Kinyarwanda translation.
-
-2005-03-29 Adi Attar <aattar cvs gnome org>
-
- * xh.po: Updated Xhosa translation.
-
-2005-03-17 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-03-12 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish Translation
-
-2005-03-09 Adi Attar <aattar cvs gnome org>
-
- * xh.po: Added Xhosa translation.
-
-2005-03-08 Sebastien Bacher <seb128 debian org>
-
- * POTFILES.in:
- * POTFILES.skip: Fix the tarball build.
-
-2005-03-07 Abel Cheung <maddog linuxhall org>
-
- * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team
-
-2005-03-07 Dan Damian <dand gnome ro>
-
- * ro.po: Updated Romanian translation.
-
-2005-03-05 Marcel Telka <marcel telka sk>
-
- * sk.po: Updated Slovak translation.
-
-2005-03-04 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation (typos).
-
-2005-03-03 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dess <alkex inwind it>.
-
-2005-03-03 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-03-03 Danilo � egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2005-03-02 Dan Damian <dand gnome ro>
-
- * ro.po: Updated Romanian translation.
-
-2005-03-01 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dess <alkex inwind it>.
-
-2005-02-28 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2005-02-27 Laszlo Dvornik <dvornik gnome hu>
-
- * hu.po: Hungarian translation updated by Gabor Kelemen.
-
-2005-02-25 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2005-02-23 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2005-02-23 Ankit Patel <ankit644 yahoo com>
-
- * gu.po: Updated Gujarati Translation.
-
-2005-02-21 Hendrik Richter <hendrik gnome-de org>
-
- * de.po: Updated German translation.
-
-2005-02-21 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2005-02-21 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-02-20 Raphael Higino <raphaelh cvs gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2005-02-19 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation from
- Simon Manlay <spointm free fr>.
-
-2005-02-19 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2005-02-18 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-02-18 Ilkka Tuohela <hile iki fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-02-18 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2005-02-17 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2005-02-16 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Alexander Shopov <ash contact bg>
-
-2005-02-16 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2005-02-16 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2005-02-16 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Update
- * no.po: Update
-
-2005-02-15 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2005-02-15 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation by
- Josep Puigdemont i Casamaj�³ <josep imatge-sintetica com>.
-
-2005-02-15 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-02-14 Ã?Å?ygimantas BeruÃ?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-02-13 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2005-02-13 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2005-02-13 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated.
-
-2005-02-13 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-02-12 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-02-12 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-02-11 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-02-11 Frank Arnold <farnold cvs gnome org>
-
- * de.po: Updated German translation.
-
-2005-02-11 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-02-11 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2005-02-11 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing file.
- * sv.po: Updated Swedish translation.
-
-2005-02-10 Raphael Higino <raphaelh cvs gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2005-02-07 Ã?Å?ygimantas BeruÃ?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-02-09 Sebastien Bacher <seb128 debian org>
-
- * POTFILES.in:
- * POTFILES.skip:
- moved some files to fix the tarball build.
-
-2005-02-09 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2005-02-09 Fernando Herrera <fernando herrera tecsidel es>
-
- * es.po: Fix an Spanish translation.
-
-2005-02-09 Nikos Charonitakis <charosn her forthnet gr>
-
- * el.po: Updated Greek translation.
-
-2005-02-08 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-02-08 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-02-08 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-02-08 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Update
- * no.po: Update
-
-2005-02-08 Frank Arnold <farnold cvs gnome org>
-
- * de.po: Updated German translation.
-
-2005-02-07 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2005-02-07 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-02-07 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-02-07 Frank Arnold <farnold cvs gnome org>
-
- * de.po: Updated German translation.
-
-2005-02-06 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-02-06 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-02-06 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-02-06 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2005-02-06 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2005-02-05 Frank Arnold <farnold cvs gnome org>
-
- * de.po: Updated German translation.
-
-2005-02-05 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-02-05 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-02-05 Ã?Å?ygimantas BeruÃ?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-02-05 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-02-04 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-02-04 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2005-02-04 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-02-04 Ã?Å?ygimantas BeruÃ?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-02-03 Raphael Higino <raphaelh cvs gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2005-02-03 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-02-02 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-02-02 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-02-03 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2005-02-02 Ã?Å?ygimantas BeruÃ?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-02-02 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translati
-
-2005-02-01 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-02-01 Ã?Å?ygimantas BeruÃ?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-01-31 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-01-31 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2005-01-30 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2005-01-29 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-01-27 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Updated Thai translation.
-
-2005-01-25 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2005-01-23 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing file.
- * POTFILES.skip: Removed nonexisting entries.
- * sv.po: Updated Swedish translation.
-
-2005-01-23 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dess�¬ <alkex inwind it>.
-
-2005-01-22 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2005-01-21 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-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>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-01-20 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-01-20 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-01-20 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-01-19 Frank Arnold <farnold cvs gnome org>
-
- * de.po: Updated German translation.
-
-2005-01-19 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Update
- * no.po: Update
-
-2005-01-18 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by Ivar Smolin.
-
-2005-01-18 Priit Laes <plaes cvs gnome org>
-
- * et.po: Translation updated by T���µivo Leedj��â�¬rv.
-
-2005-01-17 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-01-17 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-01-16 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-01-15 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.skip: Add *.desktop.in files.
-
-2005-01-15 Pawan Chitrakar <pawan nplinux org>
-
- * ne.po: Updated Nepali translation
-
-2005-01-15 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-01-14 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2005-01-14 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-01-13 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-01-12 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-01-11 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Update
- * no.po: Update
-
-2005-01-10 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2005-01-10 Pawan Chitrakar <pawan nplinux org>
-
- * ne.po: Added nepali translation
-
-2005-01-08 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2005-01-07 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2005-01-06 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2005-01-06 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2005-01-05 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2005-01-06 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Update
- * no.po: Update
-
-2005-01-03 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-12-30 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2004-12-28 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Update
- * no.po: Update
-
-2004-12-26 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-12-26 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-12-25 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-12-24 Leonid Kanter <leon asplinux ru>
-
- * ru.po: update Russian translation
-
-2004-12-23 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2004-12-23 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2004-12-23 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-12-22 Christian Rose <menthos menthos com>
-
- * POTFILES.skip: Removed no longer existing files.
- * POTFILES.in: Added missing files and sorted it.
-
-2004-12-22 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2004-12-22 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-12-21 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-12-20 Simos Xenitellis <simos gnome org>
-
- * el.po: Updated Greek translation.
-
-2004-12-19 Hendrik Brandt <heb gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-12-19 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-12-19 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-12-18 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-12-16 Leonid Kanter <leon asplinux ru>
-
- * ru.po: update Russian translation
-
-2004-12-16 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-12-14 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2004-12-13 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2004-12-13 Dwayne Bailey <dwayne translate org za>
-
- * zu.po: Added Zulu translation by
- Zuza Software Foundation <info translate org za>.
-
-2004-12-12 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation
-
-2004-12-12 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-12-11 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-12-10 Rodney Dawes <dobey novell com>
-
- * POTFILES.in: add gnome-wp-item.c to list of translatable files
-
- Fixes #151425
-
-2004-12-07 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-12-06 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2004-12-03 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2004-12-03 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-12-01 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-11-30 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-11-29 Dwayne Bailey <dwayne translate org za>
-
- * nso.po: Updated Northern Sotho translation.
-
-2004-11-29 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-11-28 Dwayne Bailey <dwayne translate org za>
-
- * nso.po: Added Northern Sotho translation by
- Zuza Software Foundation <info translate org za>.
-
-2004-11-28 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-11-28 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation
-
-2004-11-27 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-11-27 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-11-26 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-11-26 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-11-25 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-11-24 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-11-22 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-11-21 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2004-11-20 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-11-18 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-11-18 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-11-18 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-11-17 Mark McLoughlin <mark skynet ie>
-
- * POTFILES.in: remove gnomecc-ui.xml
-
-2004-11-15 Hendrik Richter <hendrik gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-11-14 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation.
-
-2004-11-11 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-11-09 Mark McLoughlin <mark skynet ie>
-
- * POTFILES.in: remove capplets/desktop-links/*
-
-2004-11-08 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2004-11-04 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-11-04 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-11-03 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-11-01 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-11-01 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-10-31 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-10-31 Hendrik Richter <hendrik gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-10-30 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-10-29 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-10-28 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-10-26 Mohammad DAMT <mdamt bisnisweb com>
-
- * id.po: Updated Indonesian translation
-
-2004-10-22 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-10-22 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-10-22 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-10-21 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-10-20 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-10-18 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-10-17 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-10-17 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation.
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-2004-10-14 Leonid Kanter <leon asplinux ru>
-
- * ru.po: Updated Russian translation
-
-2004-10-13 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-10-14 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-10-13 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation.
-
-2004-10-13 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-10-10 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-10-07 Ole Laursen <olau hardworking dk>
-
- * da.po: Fixed a couple of spelling mistakes in the Danish translation.
-
-2004-10-06 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-09-29 Leonid Kanter <leon asplinux ru>
-
- * ru.po: fixed some problems in Russian translation
-
-2004-09-25 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-09-25 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-09-21 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dessi <alkex inwind it>.
-
-2004-09-17 Nikos Charonitakis <charosn her forthnet gr>
-
- * el.po: Updated Greek translation.
-
-2004-09-15 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: Updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2004-09-12 Paisa Seeluangsawat <paisa users sf net>
-
- * th.po: Updated Thai translation.
-
-2004-09-12 Laszlo Dvornik <dvornik gnome hu>
-
- * hu.po: Updated Hungarian translation by Gabor Kelemen.
-
-2004-09-12 Dafydd Harries <daf muse 19inch net>
-
- * cy.po: Updated Welsh translation.
-
-2004-09-11 Hendrik Richter <hendrik gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-09-11 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2004-09-10 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2004-09-09 Ole Laursen <olau hardworking dk>
-
- * da.po: Fixed a string in the Danish translation.
-
-2004-09-09 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2004-09-09 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish Translation
-
-2004-09-08 Arafat Medini <lumina arabeyes org>
-
- * ar.po: Updated Arabic translation
-
-2004-09-07 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2004-09-07 Laszlo Dvornik <dvornik gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2004-09-07 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-09-07 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2004-09-07 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-09-06 Mugurel Tudor <mugurelu go ro>
-
- * ro.po: Updated Romanian translation
- by Misu Moldovan <dumol go ro>
-
-2004-09-06 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-09-06 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-09-06 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2004-09-06 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2004-09-06 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-09-06 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2004-09-06 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-09-05 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Updated
- * no.po: Updated
-
-2004-09-05 Raphael Higino <raphaelh cvs gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2004-09-05 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-09-05 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-09-04 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-09-04 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-09-04 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2004-09-04 Hendrik Richter <hendrik gnome-de org>
-
- * de.po: Updated German translation
-
-2004-09-04 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-09-04 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-09-03 Raphael Higino <raphaelh cvs gnome org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2004-09-03 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2004-09-03 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish Translation
-
-2004-09-03 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-09-03 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: Updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2004-09-02 Hendrik Richter <hendrik gnome-de org>
-
- * de.po: Updated German translation
-
-2004-08-31 Runa Bhattacharjee <runab redhat com>
- * bn.po: Updated Bengali (bn) Translation
-
-2004-08-31 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2004-08-31 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2004-08-30 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2004-08-30 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2004-08-30 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-08-30 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-08-30 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-08-29 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2004-08-29 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-08-29 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-08-29 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-08-28 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation update
-
-2004-08-28 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-08-28 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-08-25 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2004-08-24 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-08-25 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-08-20 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-08-20 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2004-08-18 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2004-08-18 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-08-17 Kjartan Maraas <kmaraas gnome org>
-
- * nb.po: Added this.
-
-2004-08-17 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2004-08-17 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2004-08-16 Christian Rose <menthos menthos com>
-
- * bs.po: Added Bosnian translation by
- Kenan Had���žiavdi���� <kenan bgnett no>.
-
-2004-08-17 Metin Amiroff <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-08-16 Laszlo Dvornik <dvornik gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2004-08-15 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-08-14 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-08-14 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2004-08-13 Tommi Vainikainen <thv iki fi>
-
- * fi.po: Unified some fields in po headers for Finnish team.
-
-2004-08-13 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-08-11 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: Updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2004-08-10 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-08-09 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-08-09 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British English translation.
-
-2004-08-09 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Updated Danish translation.
-
-2004-08-08 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-08-07 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-08-07 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-08-07 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-08-06 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
- * POTFILES.in: Added control-center/GNOME_ControlCenter.server.in.
-
-2004-08-06 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-08-05 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir "Kaladan" Petkov <vpetkov i-space org>
-
-2004-08-04 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2004-08-02 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2004-08-02 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-08-02 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-08-01 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-08-01 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2004-08-01 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-07-31 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-08-01 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-07-31 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-07-31 David Lodge <dave cirt net>
-
- * en_GB.po: Updated British translation.
-
-2004-07-31 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: Add missing files from capplets/keyboard
- * no.po: Updated Norwegian translation.
-
-2004-07-31 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-07-31 Nikos Charonitakis <charosn her forthnet gr>
-
- * el.po: Updated Greek translation.
-
-2004-07-30 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-07-29 Martin Willemoes Hansen <mwh sysrq dk>
-
- * da.po: Reviewed and updated fuzzy messages plus
- translated new messages.
-
-2004-07-29 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Rostislav "zbrox" Raykov <zbrox i-space org>
-
-2004-07-28 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-07-28 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-07-28 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-07-27 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Rostislav "zbrox" Raykov <zbrox i-space org>
-
-2004-07-27 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-07-26 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-07-26 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-07-21 Guntupalli Karunakar <karunakar freedomink org>
-
- * hi.po: Updated Hindi translation.
-
-2004-07-19 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-07-15 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-07-15 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-07-14 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-07-12 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation
-
-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>.
-
-2004-07-10 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-07-10 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by Elian Myftiu.
-
-2004-07-10 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir "Kaladan" Petkov <vpetkov i-space org>
-
-2004-07-07 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-07-02 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-07-01 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Translation updated by Elian Myftiu.
-
-2004-06-30 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2004-06-29 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Translation updated by Elian Myftiu.
-
-2004-06-28 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Translation updated by Elian Myftiu.
-
-2004-06-25 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-06-25 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-06-23 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-06-23 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-06-22 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-06-21 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-06-21 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-06-20 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-06-17 Gustavo Maciel Dias Vieira <gustavo sagui org>
-
- * pt_BR.po: Small translation fix.
-
-2004-06-17 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-06-16 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-06-11 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-06-11 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 akl lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2004-06-10 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-06-10 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-06-05 Dinesh Nadarajah <dinesh_list sbcglobal net>
-
- * ta.po: Updated Tamil Translation
-
-2004-06-05 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-06-04 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-06-02 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-06-02 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-06-02 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-06-01 Alexander Shopov <ash contact bg>
-
- * bg.po: Updated Bulgarian translation by
- Vladimir Petkov <vpetkov i-space org>
-
-2004-05-30 Nikos Charonitakis <frolix68 yahoo gr>
-
- * el.po: Updated Greek translation.
-
-2004-05-27 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-05-27 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-05-25 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-05-24 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-05-23 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-05-22 Nikos Charonitakis <frolix68 yahoo gr>
-
- * el.po: Updated Greek translation.
-
-2004-05-20 Alexander Winston <alexander winston comcast net>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-05-19 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-05-18 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-05-18 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-05-17 Jody Goldberg <jody gnome org>
-
- * POTFILES.in : add some files for the new shell
- * POTFILES.skip : ditto.
-
-2004-05-15 Alexander Winston <alexander winston comcast net>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-05-13 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-05-13 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-05-12 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-05-11 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-05-10 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-04-26 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-04-25 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-04-25 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-04-24 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-04-24 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2004-04-17 Sebastien Bacher <seb128 debian org>
-
- * fr.po: Typo fix.
-
-2004-04-17 Dafydd Harries <daf muse 19inch net>
-
- * cy.po: Updated Welsh translation from Rhys Jones.
-
-2004-04-17 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated and merged Japanese translation for HEAD.
-
-2004-04-15 Jody Goldberg <jody gnome org>
-
- * Release 2.6.1
-
-2004-04-15 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2004-04-15 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-04-15 Theppitak Karoonboonyanan <thep linux thai net>
-
- * th.po: Fix spellings.
-
-2004-04-15 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-04-14 I���±aki Larra���±aga <dooteo euskalgnu org>
-
- * eu.po: Addded Basque translation.
-
-2004-04-14 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-04-14 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2004-04-14 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2004-04-13 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Fix minor tyop.
-
-2004-04-13 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation. Thanks to Sebastian Heinlein.
-
-2004-04-13 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-04-12 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-04-12 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dessi` <alkex inwind it>.
-
-2004-04-09 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Updated British English translation
-
-2004-04-10 Baris Cicek <baris teamforce name tr>
-
- * tr.po: Updated Turkish Translation.
-
-2004-04-09 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-04-09 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-04-10 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-04-09 Guntupalli Karunakar <karunakar freedomink org>
-
- * gu.po: Added Gujurati translation by
- Gujarati Team <magnet magnet-i com>.
-
-2004-04-09 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-04-09 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-04-09 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2004-04-08 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2004-04-08 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2004-04-08 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-04-08 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-04-08 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-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>.
-
-2004-04-07 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-04-07 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2004-04-07 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-04-06 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2004-04-06 Mohammad DAMT <mdamt bisnisweb com>
-
- * id.po: Updated Indonesian translation
-
-2004-04-03 Sam���ºel J���³n Gunnarsson <sammi techattack nu>
-
- * is.po: Updated Icelandic translation.
-
-2004-04-01 Jody Goldberg <jody gnome org>
-
- * Release 2.6.0.3
-
-2004-03-31 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-03-30 Jody Goldberg <jody gnome org>
-
- * Release 2.6.0.1
-
-2004-03-31 Christian Rose <menthos menthos com>
-
- * af.po: Added Afrikaans translation by
- Zuza Software Foundation <info translate org za>.
-
-2004-03-30 Adam Weinberger <adamw gnome org>
-
- * en_CA.po: Updated Canadian English translation.
-
-2004-03-29 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2004-03-29 Nikos Charoniakis <frolix68 yahoo gr>
-
- * el.po: Updated Greek translation.
-
-2004-03-28 Robert Sedak <robert sedak sk htnet hr>
-
- * hr.po: Updated Croatian translation.
-
-2004-03-27 Gustavo Noronha Silva <kov debian org>
-
- * pt_BR.po:
- - fixed a small typo prov���¡velmente->provavelmente
-
-2004-03-24 Guntupalli Karunakar <karunakar freedomink org>
-
- * pa.po: Added Punjabi translation by
- Amanpreet Singh Alam <amanlinux netscape net>.
-
-2004-03-24 Robert Sedak <robert sedak sk htnet hr>
-
- * hr.po: Updated Croatian translation.
-
-2004-03-23 Jody Goldberg <jody gnome org>
-
- * Release 2.6.0
-
-2004-03-23 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2004-03-22 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2004-03-21 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2004-03-21 Alastair McKinstry <mckinstry debian org>
-
- * ga.po: Update Irish translation.
-
-2004-03-20 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation from
- Woodman Tuen <woodnman culturecom com hk>.
-
-2004-03-19 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-03-19 Arafat Medini <lumina silverpen de>
-
- * ar.po: Updated Arabic translation.
-
-2004-03-18 Arafat Medini <lumina silverpen de>
-
- * ar.po: Updated Arabic translation.
-
-2004-03-18 Mugurel Tudor <mugurelu go ro>
-
- * ro.po: Updated Romanian translation
- by MiÃ?Â?Ã?Â?u Moldovan <dumol go ro>
-
-2004-03-17 Dinesh Nadarajah <dinesh_list sbcglobal net>
-
- * ta.po: Updated Tamil Translation
-
-2004-03-17 Dafydd Harries <daf muse 19inch net>
-
- * cy.po: Updated Welsh translation from Dafydd Tomos.
-
-2004-03-16 Gareth Owen <gowen72 yahoo com>
-
- * en_GB.po: Added British translation
-
-2004-03-14 Sayamindu Dasgupta <sayamindu clai net>
-
- * bn.po: Updated Bengali translation (done by Progga
-<abulfazl juniv edu>)
-
-2004-03-14 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-03-13 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-03-13 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation
-
-2004-03-12 Arafat Medini <lumina silverpen de>
-
- * ar.po: Updated Arabic translation.
-
-2004-03-12 Sayamindu Dasgupta <sayamindu clai net>
-
- * bn.po: Updated Bengali translation (done by Progga
-<abulfazl juniv edu>)
-
-2004-03-11 Jody Goldberg <jody gnome org>
-
- * Release 2.5.4
-
-2004-03-09 Gustavo Noronha Silva <kov debian org>
-
- * pt_BR.po: translation update done by
- Est���ªv���£o Samuel Proc���³pio <tevaum ig com br>
-
-2004-03-10 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated.
-
-2004-03-09 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dessi`.
-
-2004-03-09 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Fixed translations were lost.
-
-2004-03-09 Sanlig Badral <badral openmn org>
- * mn.po: Updated Mongolian translation.
-
-2004-03-09 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-03-08 Alastair McKinstry <mckinstry computer org>
-
- * ga.po: Updated Irish translation.
-
-2004-03-08 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-03-08 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-03-08 Ales Nyakhaychyk <nab mail by>
-
- * be.po: Updated Belarusian translation.
-
-2004-03-08 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-03-07 Alexander Winston <alexander winston comcast net>
-
- * en_CA.po: Updated Canadian English translation to "740
- translated messages, 3 fuzzy translations." status.
-
-2004-03-07 Christophe Merlet <redfox redfoxcenter org>
-
- * POTFILES.in: Updated.
- * fr.po: Updated French translation.
-
-2004-03-06 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-03-06 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2004-03-05 Paisa Seeluangsawat <paisa users sf net>
-
- * th.po: Updated Thai translation.
-
-2004-03-04 Funda Wang <fundawang linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation.
-
-2004-03-03 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2004-03-03 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2004-03-02 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2004-03-02 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Reinout van Schouwen.
-
-2004-03-01 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-03-01 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-29 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dessi` <alkex inwind it>.
-
-2004-02-29 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2004-02-28 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spansih translation.
-
-2004-02-29 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-02-28 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2004-02-28 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-02-28 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 tuxfamily org>
-
- * lt.po: Updated Lithuanian translation.
-
-2004-02-28 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2004-02-28 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-28 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-02-27 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Tino Meinen.
-
-2004-02-27 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-02-27 Paisa Seeluangsawat <paisa users sf net>
-
- * th.po: Updated Thai translation.
-
-2004-02-26 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Kees van den Broek.
-
-2004-02-26 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-02-24 Alastair McKinstry <mckinstry debian org>
-
- * ga.po: Updated Irish translation.
-
-2004-02-24 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-02-24 Guntupalli Karunakar <karunakar freedomink org>
-
- * hi.po: Updated Hindi translation.
-
-2004-02-23 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dessi` <alkex inwind it>.
-
-2004-02-23 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2004-02-22 Hasbullah Bin Pit <sebol my-penguin org>
-
- * ms.po: Updated Malay translation.
-
-2004-02-22 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Updated Azerbaijani translation.
-
-2004-02-21 Christian Rose <menthos menthos com>
-
- * en_CA.po: Added Canadian English translation by
- Adam Weinberger <adamw FreeBSD org>.
-
-2004-02-21 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-21 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-02-20 Sanlig Badral <badral openmn org>
-
- * mn.po: Updated Mongolian translation.
-
-2004-02-20 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-20 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-20 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-02-19 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-02-19 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2004-02-19 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2004-02-18 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-02-18 Ales Nyakhaychyk <nab mail by>
-
- * be.po: Updated Belarusian translation.
-
-2004-02-19 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-02-18 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-18 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-02-17 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-17 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-02-17 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-17 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2004-02-17 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-02-16 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2004-02-16 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-02-16 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-16 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-15 Christian Rose <menthos menthos com>
-
- * POTFILES.skip: Removed non-existant files.
- * sv.po: Updated Swedish translation.
-
-2004-02-15 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-02-15 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-02-15 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation
-
-2004-02-15 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-02-14 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation except BUG#134171.
-
-2004-02-13 Jody Goldberg <jody gnome org>
-
- * Release 2.5.3
-
-2004-02-13 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-02-12 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spansih translation.
-
-2004-02-12 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-02-11 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-10 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2004-02-10 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-10 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-10 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-10 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: Add gnome-background-properties.glade
- * no.po: Updated Norwegian translation.
-
-2004-02-09 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-02-09 Nikos Charonitakis <charosn her forthnet gr>
-
- * el.po: Updated Greek translation.
-
-2004-02-08 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spansih translation.
-
-2004-02-06 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-07 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-02-06 Robert Sedak <robert sedak sk htnet hr>
-
- * hr.po: Updated Croatian translation.
-
-2004-02-06 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-02-05 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2004-02-05 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-02-04 Maxim Dziumanenko <mvd mylinux com ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2004-02-03 Alastair McKinstry <mckinstry computer org>
-
- * ga.po: Updated Irish translations.
-
-2004-02-03 Carlos PerellÃ?Â?Ã?³ MarÃ?Â?Ã?Ân <carlos gnome org>
-
- * POTFILES.in: Removed the localization capplet files, until GNOME 2.7
-
-2004-02-02 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-02-02 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-02-01 Ole Laursen <olau hardworking dk>
-
- * da.po: Partially updated Danish translation.
-
-2004-02-01 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-02-01 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-02-01 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-01-31 MÃ?Â?Ã?Â?tin Ã?Â?Ã?Â?mirov <metin karegen com>
-
- * az.po: Translation updated.
-
-2004-01-30 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-01-29 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2004-01-29 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-01-28 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2004-01-28 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Fixed Czech translation.
-
-2004-01-28 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-01-27 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-01-26 Alastair McKinstry <mckinstry computer org>
-
- * ga.po: Updated Irish translation.
-
-2004-01-24 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-01-24 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-01-23 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-01-23 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-01-23 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-01-22 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation.
-
-2004-01-21 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-01-21 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Kees van den Broek.
-
-2004-01-21 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-01-21 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-01-17 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-01-18 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-01-15 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-01-15 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2004-01-15 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-01-14 Rodney Dawes <dobey ximian com>
-
- * sq.po: Update Albanian translation
-
-2004-01-14 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-01-14 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-01-14 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-01-14 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-01-14 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-2004-01-13 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: Update with new files.
- * no.po: Update this too.
-
-2004-01-13 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Translation updated by Kees van den Broek.
-
-2004-01-13 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-01-13 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
- * POTFILES.in: Added missing files.
-
-2004-01-12 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-01-12 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-01-11 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-01-11 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-01-10 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004.01.09 Arafat Medini <lumina silverpen de>
-
- * ar.po: Updated Arabic translation
-
-2004-01-09 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-01-10 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2004-01-09 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation by GNOME PL Team.
-
-2004-01-07 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated and revised Portuguese translation.
-
-2004-01-06 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2004-01-06 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-01-06 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2004-01-06 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish tranlation.
-
-2004-01-04 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay translation.
-
-2004-01-04 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2004-01-03 Robert Sedak <robert sedak sk htnet hr>
-
- * hr.po: Updated Croatian translation.
-
-2004-01-03 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2004-01-02 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2004-01-02 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2004-01-02 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2004-01-01 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2004-01-01 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-12-30 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-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-12-29 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-12-29 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-12-27 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2003-12-23 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-12-21 Danilo ��� egan <dsegan gmx net>
-
- * POTFILES.in: Synced with recent name changes.
-
-2003-12-20 Arafat Medini <lumina silverpen de>
-
- * ar.po: Updated Arabic translation
-
-2003-12-15 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-2003-12-14 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian 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.
-
-2003-12-13 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish translation.
-
-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>.
-
-2003-12-12 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-12-10 Francisco Javier F. Serrador <serrador cvs gnome org>
-
- * es.po: Updated Spanish (es) translation.
-
-2003-12-08 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-12-05 Paisa Seeluangsawat <paisa users sf net>
-
- * th.po: Updated Thai (th) translation.
-
-2003-12-04 Ã?Â?Ã?Â?ygimantas BeruÃ?Â?Ã?Â?ka <uid0 tuxfamily org>
-
- * lt.po: Updated Lithuanian translation.
-
-2003-12-03 Sanlig Badral <badral openmn org>
-
- * mn.po: Updated Mongolian translation.
-
-2003-12-03 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-11-29 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-11-27 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-11-27 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: Updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-11-24 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-11-20 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation
- Fixes bug #127435.
-
-2003-11-20 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2003-11-20 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: Updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-11-19 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-11-17 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2003-11-14 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-11-12 Kostas Papadimas <pkst gnome org>
-
- * el.po: Updated Greek translation
-
-2003-11-10 ����smund Skj��� veland <aasmunds fys uio no>
-
- * nn.po: Updated Norwegian Nynorsk translation.
-
-2003-11-07 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
- * is.po: Mark wrong entry as fuzzy (msgfmt check failed).
-
-2003-11-04 Vincent van Adrighem <adrighem gnome org>
-
- * nl.po: Dutch translation updated by Vincent van Adrighem.
-
-2003-11-01 Paul Duffy <dubhthach frink nuigalway ie>
-
- * ga.po: Fixed formatting errors. Submitted by
-David O'Callaghan <david ocallaghan cs tcd ie>
-
-2003-11-01 KAMAGASAKO Masatoshi <emerald gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2003-10-30 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-10-28 Jody Goldberg <jody gnome org>
-
- * Release 2.5.0
-
-2003-10-25 Ole Laursen <olau hardworking dk>
-
- * da.po: Fixed a string in Danish translation.
-
-2003-10-25 Metin Amiroff <metin karegen com>
-
- * az.po: Updated Azerbaijani translation.
-
-2003-10-22 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-10-20 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2003-10-19 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Sorted and added missing file.
- * sv.po: Updated Swedish translation.
-
-2003-10-14 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Cleaned-up Serbian translation.
-
-2003-10-10 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation by
- Elian Myftiu <elian lycos com>.
-
-2003-10-09 Christian Rose <menthos menthos com>
-
- * sv.po: Fixed one more embarassing typo.
-
-2003-10-07 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-10-07 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2003-10-04 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2003-10-04 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Fixed Czech translation.
-
-2003-10-03 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2003-09-30 Danilo ��� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-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>.
-
-2003-09-23 Christian Rose <menthos menthos com>
-
- * sv.po: Fixed some embarassing typos.
-
-2003-09-19 T���µivo Leedj��â�¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2003-09-17 Gediminas Paulauskas <menesis delfi lt>
-
- * lt.po: Updated Lithuanian translation by Zygimantas Berucka.
-
-2003-09-08 Mugurel Tudor <mugurelu go ro>
-
- * ro.po: Updated Romanian translation by
- Misu Moldovan <dumol go ro>
-
-2003-09-07 Gustavo Noronha Silva <kov debian org>
-
- * pt_BR.po: updated translation.
-
-2003-09-06 Nikos Charonitakis <frolix68 yahoo gr>
-
- * el.po: Review of Greek translation.
-
-2003-09-05 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2003-09-05 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay translation.
-
-2003-09-05 Guntupalli Karunakar <karunakar freedomink org>
-
- * hi.po: Updated Hindi translation.
-
-2003-09-05 Taneem Ahmed <taneem bengalinux org>
-
- * bn.po: Updated Bangla (Bengali) translation.
-
-2003-09-04 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-09-04 Ivan Stojmirov <stojmir linux net mk>
-
- * mk.po: Updated Macedonian translation
-
-2003-09-03 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Fixes to Finnish translation.
-
-2003-09-03 Paul Duffy <dubhthach frink nuigalway ie>
-
- * ga.po: Updated Irish translation
-
-2003-09-03 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation.
-
-2003-09-02 Mugurel Tudor <mugurelu go ro>
-
- * ro.po: Updated Romanian translation.
-
-2003-09-02 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-09-02 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dess���¬ <alkex inwind it>
-
-2003-08-31 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2003-08-29 Nikos Charonitakis <frolix68 yahoo gr>
-
- * el.po: Review of Greek translation.
-
-2003-08-27 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Revision of Spanish translation by
-Francisco Javier F. Serrador <serrador arrakis es>.
-
-2003-08-26 Dafydd Harries <daf parnassus ath cx>
-
- * cy.po: Updated Welsh translation.
-
-2003-08-27 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Kees van den Broek.
-
-2003-08-25 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Fixed missing accel in Portuguese translation.
-
-2003-08-24 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2003-08-24 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2003-08-23 Ole Laursen <olau hardworking dk>
-
- * da.po: Fixed a few strings in the Danish translation.
-
-2003-08-23 Danilo ������� egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-08-23 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2003-08-21 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Updated Turkish translation by Gorkem Cetin.
-
-2003-08-20 Sam�������ºel J�������³n Gunnarsson <sammi techattack nu>
-
- * is.po: Added Icelandic translation by
- Ã?Â?Ã?Â?Ã?Â?Ã?Â?ki G. Karlsson <aki akademia is>
-
-2003-08-19 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2003-08-19 Dafydd Harries <daf parnassus ath cx>
-
- * cy.po: Updated Welsh translation.
-
-2003-08-19 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Update Norwegian translation.
-
-2003-08-18 Guntupalli Karunakar <karunakar freedomink org>
-
- * hi.po: Added Hindi translation.
-
-2003-08-18 Metin Amiroff <metin karegen com>
-
- * az.po: Updated Azerbaijani translation.
-
-2003-08-17 Evandro Fernandes Giovanini <evandrofg ig com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2003-08-17 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2003-08-17 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation.
-
-2003-08-16 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2003-08-14 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2003-08-14 Danilo ������� egan <dsegan gmx net>
-
- * be.po: Updated Belarusian translation by Ales Nyakhaychyk
- <nab mail by>.
-
-2003-08-12 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2003-08-11 Paisa Seeluangsawat <paisa users sf net>
-
- * th.po: Updated Thai translation.
-
-2003-08-11 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-08-10 Kostas Papadimas <pkst gmx net>
-
- * el.po: Updated Greek translation.
-
-2002-08-09 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay translation.
-
-2003-08-09 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-08-08 Danilo ? egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation.
-
-2003-08-08 Dafydd Harries <daf parnassus ath cx>
-
- * cy.po: Updated Welsh translation.
-
-2003-08-07 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-08-07 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-08-06 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2003-08-06 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2003-08-06 Metin Amiroff <metin karegen com>
-
- * az.po: Updated Azerbaijani translation.
-
-2003-08-06 Wang Jian <lark linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation by
- Funda Wang <fundawang linux net cn>.
-
-2003-08-06 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-08-06 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-08-06 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2003-08-04 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2003-08-04 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-08-04 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-08-04 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-08-03 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-08-03 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-08-02 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-08-01 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-08-01 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-08-01 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-31 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-31 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-07-31 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-07-30 Frederic Crozat <fcrozat mandrakesoft com>
-
- * fr.po: fix comment for at-properties.desktop
-
-2003-07-28 Christophe Fergeau <teuf gnome org>
-
- * fr.po: fixed a few typos, a few consistency fixes for menu entries
-
-2003-07-28 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-07-28 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-07-27 Kostas Papadimas <pkst gmx net>
-
- * el.po: Updated Greek translation.
-
-2002-07-26 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay translation.
-
-2003-07-26 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-07-26 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2003-07-26 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-07-25 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-07-25 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-07-25 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-25 Dafydd Harries <daf parnassus ath cx>
-
- * cy.po: Updated Welsh translation.
-
-2003-07-24 Andrew Sobala <aes gnome org>
-
- * POTFILES.in: added vfs-methods/themus/apply-font.glade
-
-2003-07-23 Andrew Sobala <aes gnome org>
-
- * POTFILES.in: s/themus-component.c/themus-theme-applier.c/
-
-2003-07-22 Kostas Papadimas <pkst gmx net>
-
- * el.po: Updated Greek translation.
-
-2003-07-21 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-21 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-07-21 Abel Cheung <maddog linux org hk>
-
- * POTFILES.in: Add capplets/accessibility/at-properties/main.c
-
-2003-07-20 Dafydd Harries <daf parnassus ath cx>
-
- * cy.po: Updated Welsh translation. Plugging in gaps of forward port
- of Kyfieithu work done against 2.2.
-
-2003-07-20 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2003-07-19 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-07-19 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-07-19 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2003-07-19 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-07-18 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-18 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-17 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-17 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-07-17 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-07-17 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Kees van den Broek.
-
-2003-07-16 Artur Flinta <aflinta cvs gnome org>
-
- * pl.po: Updated Polish translation.
-
-2003-07-16 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-07-13 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-07-12 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-07-12 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-07-11 Telsa Gwynne <hobbit aloss ukuu org uk>
-
- * cy.po: Added Welsh translation from Kyfieithu contributors
- (http://www.kyfieithu.co.uk/): Owain Green, Gareth Williams
- and Steve Griffiths.
-
-2003-07-08 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Merged drwright translation.
-
-2003-07-07 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Kees van den Broek.
-
-2003-07-07 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2003-07-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.4
-
-2003-07-06 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2003-07-04 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-07-04 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-07-04 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-07-04 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-07-02 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-06-30 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Set translator_credits.
-
-2003-06-30 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-06-30 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-06-29 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Update Norwegian translation.
-
-2003-06-28 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-06-28 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-06-28 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2003-06-28 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-06-27 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-06-27 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing files.
-
-2003-06-26 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2003-06-26 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-06-26 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-06-26 Abel Cheung <maddog linux org hk>
-
- * POTFILES.in: Add stuff under capplets/accessibility/at-properties/ .
-
-2003-06-24 Jody Goldberg <jody gnome org>
-
- * Release 2.3.3
-
-2003-06-24 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-06-23 Danilo ? egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation by Serbian
- team (Prevod.org).
-
-2003-06-23 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Kees van den Broek.
-
-2003-06-17 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Minor fixes to Czech translation.
-
-2003-06-17 Alessio Frusciante <algol firenze linux it>
-
- * it.po: Updated Italian translation by
- Alessio Dess??????�������¬.
-
-2003-06-15 Taneem Ahmed <taneem eyetap org>
-
- * bn.po: Added Bengali translation by Progga
- of Ankur group <gnome-translation bengalinux org>.
-
-2003-06-15 Wang Jian <lark linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation by
- Funda Wang <fundawang linux net cn>.
-
-2003-06-15 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Vincent van Adrighem.
-
-2003-06-13 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-06-13 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2003-06-11 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-06-10 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2003-06-09 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: Updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-06-08 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2003-06-04 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-06-04 Abel Cheung <maddog linux org hk>
-
- * ta.po: Fix broken encoding.
-
-2003-06-04 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2003-06-04 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-06-02 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-06-01 Danilo ? egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation by Serbian
- team (Prevod.org).
-
-2003-05-30 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2003-05-29 Kostas Papadimas <pkst gmx net>
-
- * el.po: Updated Greek translation.
-
-2003-05-29 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-05-29 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-05-26 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-05-24 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2003-05-23 Paul Duffy <dubhthach frink nuigalway ie>
-
- * ga.po: Update Irish translation.
-
-2003-05-23 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-05-23 Abel Cheung <maddog linux org hk>
-
- * *.po: Merged with fontilus translation, except sv.po.
- * id.po, th.po: New files.
-
-2003-05-23 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing files.
- * sv.po: Updated Swedish translation.
-
-2003-05-22 Danilo ??????Ã?Â?Ã?Â?Ã?Â?Ã?Â?? egan <dsegan gmx net>
-
- * sr.po, sr Latn po: Updated Serbian translation by Serbian team
- (Prevod.org).
-
-2003-05-20 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-05-19 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2003-05-19 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2003-05-18 Michal Bukovjan <bukm centrum cz>
-
- * cs.po : Updated Czech translation.
-
-2003-05-17 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2003-05-16 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Updated Albanian translation.
-
-2003-05-16 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
- Fixed a typo in Czech translation.
-
-2003-05-15 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-05-15 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-05-15 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2003-05-14 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-05-14 KAMAGASAKO Masatoshi <emerald gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2002-05-14 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay translation.
-
-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.
-
-2003-05-13 Andrew Sobala <aes gnome org>
-
- * POTFILES.in: added themus files
-
-2003-05-13 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing files.
- * sv.po: Updated Swedish translation.
-
-2003-05-12 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2003-05-11 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2003-05-09 Paul Duffy <dubhthach frink nuigalway ie>
-
- * ga.po: Updated Irish translation.
-
-2003-05-07 Jody Goldberg <jody gnome org>
-
- * Release 2.3.1
-
-2003-05-06 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2003-05-05 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * be.po: Updated Belarusian translation
- from Belarusian team <i18n mova org>.
-
-2003-05-03 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-05-03 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2003-05-02 Paul Duffy <dubhthach frink nuigalway ie>
-
- * ga.po: Updated Irish translation.
-
-2003-05-01 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2004-03-30 Paul Duffy <dubhthach frink nuigalway ie>
-
- * ga.po: Updated Irish translation
-
-
-2003-04-30 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-04-29 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: Add missing files.
- * no.po: Update this.
-
-2003-04-29 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-
-2004-03-29 Paul Duffy <dubhthach frink nuigalway ie>
-
- * ga.po: Updated Irish translation
-
-2003-03-21 Guntupalli Karunakar <karunakar freedomink org>
-
- * ml.po: Added Malayalam translation by
- FSF-India <locale gnu org in>
-
-2003-03-18 Metin Amiroff <metin karegen com>
-
- * az.po: Updated Azerbaijani translation.
-
-2003-03-10 Roozbeh Pourander <roozbeh sharif edu>
-
- * fa.po: Added Persian translation.
-
-2003-02-22 Laurent Dhima <laurenti alblinux net>
-
- * sq.po: Added Albanian translation
- by Elian Myftiu <elian lycos com>
-
-2003-02-21 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * be.po: Updated Belarusian translation
- from Belarusian team <i18n infonet by>.
-
-2003-02-13 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * be.po: Updated Belarusian translation
- from Belarusian team <i18n infonet by>.
-
-2003-02-13 Gediminas Paulauaskas <menesis delfi lt>
-
- * lt.po: Updated Lithuanian translation by Vaidotas Zemlys.
-
-2003-02-11 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-02-10 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-Tue Feb 4 17:09:18 2003 Jonathan Blandford <jrb redhat com>
-
- * Release 2.2.0.1
-
-2003-02-04 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-02-04 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2003-02-03 Daniel Yacob <locales geez org>
-
- * am.po: Updated Amharic translation.
-
-2003-02-03 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-02-03 Sanlig Badral <badral chinggis com>
-
- * mn.po: Updated Mongolian translation.
-
-2003-02-01 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Committed updated Turkish translation by Gorkem.
-
-2003-02-01 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2003-02-01 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-01-26 Christian Rose <menthos menthos com>
-
- * sv.po: Some fixes for problems catched in translation review.
-
-2003-01-26 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2003-01-26 T??????��������??????�������µivo Leedj??????��������?????�������¢?????��������?????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2003-01-26 Kang Jeong-Hee <Keizi mail co kr>
-
- * ko.po: Updated Korean translation.
-
-2003-01-26 Kostas Papadimas <pkst gmx net>
-
- * el.po: Updated Greek translation.
-
-2003-01-26 Takeshi AIHANA <aihana gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2003-01-26 Christian Rose <menthos menthos com>
-
- * sv.po: Some fixes for problems catched in translation review.
-
-2003-01-25 Benjamin Greiner <nadaschauher gmx de>
-
- * de.po: Proofread German translation.
-
-2003-01-25 Christophe Fergeau <teuf users sourceforge net>
-
- * fr.po: Updated French translation.
-
-2003-01-25 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-01-25 Gustavo Noronha Silva <kov debian org>
-
- * pt_BR.po: translation update.
-
-2003-01-24 Yuriy Syrota <rastaman renome.rovno.ua>
-
- * uk.po: Updated Ukrainian translation.
-
-2003-01-24 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2003-01-23 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2003-01-23 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-01-23 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Vincent van Adrighem.
-
-2003-01-22 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2003-01-22 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2003-01-22 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-01-22 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2003-01-22 Marius Andreiana <marius galuna.ro>
-
- * ro.po: updated ( thanks to Mugurel Tudor )
-
-2003-01-22 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-01-22 Christian Rose <menthos menthos com>
-
- * mn.po: Added Mongolian translation by
- Sanlig Badral <badral chinggis com>.
-
-2003-01-21 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-01-21 Benjamin Greiner <nadaschauher gmx de>
-
- * de.po: Updated German translation.
-
-2003-01-21 Artis Trops <hornet navigator lv>
-
- * lv.po: Updated Latvian translation.
-
-2003-01-21 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-01-21 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2003-01-21 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-01-21 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-Tue Jan 21 01:21:17 2003 Jonathan Blandford <jrb gnome org>
-
- * Release 2.2.0
- * POTFILES.in: add gnome-theme-save.c and capplet-stock-icons.c
-
-2003-01-20 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-01-20 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vietnamese file
-
-2003-01-20 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2003-01-20 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-01-20 Christian Meyer <chrisime gnome org>
-
- * de.po: Removed fuzzy translation.
-
-2003-01-20 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation
- from Russian team <gnome-cyr gnome org>.
-
-2003-01-20 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2003-01-19 He Qiangqiang <carton linux net cn>
-
- * zh_CN.po: Fixed some translation.
-
-2003-01-18 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Committed updated Turkish translation by Gorkem.
-
-2003-01-18 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2003-01-18 He Qiangqiang <carton linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation by
- Funda Wang <fundawang en2china com>.
-
-2003-01-17 Gustavo Noronha Silva <kov debian org>
-
- * pt_BR.po: updated translation.
-
-2003-01-16 Daniel Yacob <locales geez org>
-
- * am.po: Updated Amharic translation.
-
-Thu Jan 16 02:41:09 2003 Jonathan Blandford <jrb gnome org>
-
- * Release 2.1.7
-
-2003-01-14 Daniel Yacob <locales geez org>
-
- * am.po: Updated Amharic translation.
-
-2003-01-13 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-01-12 Anders Carlsson <andersca gnu org>
-
- * sv.po: Fix a silly.
-
-2003-01-11 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2003-01-10 Jody Goldberg <jody gnome org>
-
- * Release 2.1.6
-
-2003-01-09 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2003-01-08 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Check some string in Spanish translation.
-
-2003-01-08 Christian Rose <menthos menthos com>
-
- * sv.po: Fixes.
-
-2003-01-08 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2003-01-08 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2003-01-08 Artis Trops <hornet navigator lv>
-
- * lv.po: Updated Latvian translation.
-
-2003-01-08 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2003-01-08 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2003-01-07 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2003-01-07 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-01-07 Daniel Yacob <locales geez org>
-
- * am.po: Updated Amharic translation.
-
-2003-01-06 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2003-01-06 Kostas Papadimas <pkst gmx net>
-
- * el.po: Updated Greek translation.
-
-2003-01-06 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2003-01-06 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2003-01-06 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2003-01-05 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vietnamese file
-
-2003-01-05 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2003-01-05 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2003-01-02 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po,wa.po: Updated Vietnamese and Walloon files
-
-2002-12-30 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2002-12-27 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
-
-2002-12-27 Pablo Gonzalo del Campo <pablodc bigfoot com>
-
- * es.po: Updated Spanish translation.
-
-2002-12-27 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-12-26 Artis Trops <hornet navigator lv>
-
- * lv.po: Updated Latvian translation.
-
-2002-12-22 Artis Trops <hornet navigator lv>
-
- * lv.po: Updated Latvian translation.
-
-2002-12-20 Gil "Dolfin" Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2002-12-20 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2002-12-19 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2002-12-18 Jody Goldberg <jody gnome org>
-
- * Release 2.1.5
-
-2002-12-17 Christian Rose <menthos menthos com>
-
- * sv.po: Terminology fix.
-
-2002-12-17 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-12-17 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2002-12-17 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-12-15 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-12-15 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-12-14 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2002-12-11 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-12-09 Kostas Papadimas <pkst gmx net>
-
- * el.po: Updated Greek translation.
-
-2002-12-09 Gil Osher <dolfin rpg org il>
-
- * he.po: Updated Hebrew translation.
-
-2002-12-09 Artis Trops <hornet navigator lv>
-
- * lv.po: sync with gnome-2-0 branch.
-
-2002-12-07 Christian Neumair <chris gnome-de org>
-
- * POTFILES.in: Added capplets/theme-switcher/gnome-theme-details.c.
- * de.po: Updated German translation.
-
-2002-12-07 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2002-12-07 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2002-12-07 He Qiangqiang <carton linux net cn>
-
- * zh_CN.po: sync with gnome-2-0 branch.
-
-2002-12-06 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2002-12-05 Miloslav Trmac <mitr volny cz>
-
- * cs.po: Updated Czech translation.
-
-2002-12-05 Christophe Merlet <redfox redfoxcenter org>
-
- * fr.po: Updated French translation.
-
-2002-12-04 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-12-04 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-12-03 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-12-03 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation somewhat.
-
-2002-12-02 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2002-12-02 Christian Neumair <chris gnome-de org>
-
- * POTFILES.in: Added schemas.
- * de.po: Updated German translation.
-
-2002-12-01 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-11-28 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-11-28 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-11-26 Fatih Demir <kabalak gtranslator org>
-
- * ta.po: Copy & paste from stable branch, too ;-)
-
-2002-11-25 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Massive copy-paste from stable branch.
-
-2002-11-26 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2002-11-25 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-11-25 Yanko Kaneti <yaneti declera com>
-
- * *.po: Convert all to UTF-8.
-
-2002-11-23 Jody Goldberg <jody gnome org>
-
- * Release 2.1.3
-
-2002-11-15 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-11-15 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-11-14 Christian Neumair <chris gnome-de org>
-
- * de.po: Updated German translation.
- * POTFILES.in: Changed.
-
-2002-11-09 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * be.po: Updated Belarusian translation
- * from Belarusian team <i18n infonet by>.
-
-2002-11-03 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * be.po: Added Belarusian translation
- * from Belarusian team <i18n infonet by>.
-
-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-21 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-10-18 Andras Timar <timar gnome hu>
-
- * hu.po: Terminology fixes.
-
-2002-10-13 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-10-13 Andras Timar <timar gnome hu>
-
- * hu.po: Yet another small fix.
-
-2002-10-12 Andras Timar <timar gnome hu>
-
- * hu.po: One more thing...
-
-2002-10-12 Andras Timar <timar gnome hu>
-
- * hu.po: Updated Hungarian translation.
-
-2002-10-04 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-10-04 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-10-01 Jody Goldberg <jody gnome org>
-
- * Release 2.1.0.1
-
-2002-09-20 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vietnamese file
-
-2002-09-20 Marius Andreiana <mandreiana yahoo com>
-
- * ro.po: small update
-
-2002-09-14 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish Translation.
-
-2002-09-13 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-09-09 Marius Andreiana <mandreiana yahoo com>
-
- * ro.po: updated ( thanks to Mugurel Tudor <mugurelu go ro> )
-
-2002-09-04 Gustavo Noronha Silva <kov debian org>
-
- * pt_BR.po: translation update, fixes typos.
-
-2002-08-21 Jody Goldberg <jody gnome org>
-
- * Release 2.1.0
-
-2002-08-16 jacob berkman <jacob ximian com>
-
- * POTFILES.in: remove capplets/file-types/category-names.h
-
-2002-08-09 Gustavo Noronha Silva <kov debian org>
-
- * pt_BR: translation update.
-
-2002-08-06 Simos Xenitellis <simos hellug gr>
-
- * el.po: Updated Greek translation.
-
-2002-07-30 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-07-30 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Committed updated Turkish translation.
-
-2002-07-22 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2002-07-21 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated French translation.
-
-2002-07-19 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-07-18 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation.
-
-2002-07-17 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2002-07-17 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-07-17 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-07-15 Zbigniew Chyla <chyla gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-07-15 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-07-15 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation.
-
-2002-07-13 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-07-13 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2002-06-05 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-07-13 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-07-12 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-07-11 jacob berkman <jacob ximian com>
-
- * POTFILES.in: jody please CVS add this file
- * POTFILES.in: remove theme-install glade file...
-
-2002-07-10 Jody Goldberg <jody gnome org>
-
- * POTFILES.in : Add theme-install glade file
-
-2002-07-10 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation.
-
-2002-07-10 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2002-07-09 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-07-08 Zbigniew Chyla <chyla gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-07-06 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2002-07-05 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-07-04 Christophe Fergeau <teuf users sourceforge net>
-
- * fr.po: Updated French translation.
-
-2002-07-04 Manuel Borchers <webmaster matronix de>
-
- * de.po: Updated German translation.
-
-2002-07-03 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vietnamese file
-
-2002-06-30 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2002-06-28 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2002-06-26 Jesus Bravo Alvarez <jba pobox com>
-
- * gl.po: Updated Galician translation from
- Xabier Garc?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Âa <xabigf gmx net>
-
-2002-06-25 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-06-24 Yanko Kaneti <yaneti declera com>
-
- * bg.po: Updated Bulgarian translation.
-
-2002-06-23 Zbigniew Chyla <chyla buy pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-06-23 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-06-22 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-06-20 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated french translation.
-
-2002-06-19 jacob berkman <jacob ximian com>
-
- * POTFILES.in: fixup
-
-2002-06-19 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Typo fix.
-
-2002-06-18 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vietnamese file
-
-2002-06-17 Jody Goldberg <jody gnome org>
-
- * Release 2.0.0
-
-2002-06-15 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2002-06-13 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
- Some entries are taken from Sun translation.
-
-2002-06-12 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2002-06-13 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2002-06-12 Andrew V. Samoilov <kai cmail ru>
-
- * uk.po: Updated Ukrainian translation.
-
-2002-06-10 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-06-10 Yanko Kaneti <yaneti declera com>
-
- * bg.po: Updated Bulgarian translation.
-
-2002-06-10 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-06-10 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation.
-
-2002-06-10 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-06-10 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vientamese file
-
-2002-06-10 Zbigniew Chyla <chyla buy pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-06-10 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-06-10 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Catalan fixes.
-
-2002-06-09 Carlos Perell?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?³ Mar?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Ân <carlos gnome-db org>
-
- * es.po: Updated Spanish translation.
-
-2002-06-09 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation.
-
-2002-06-09 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2002-06-09 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-06-09 Carlos Perell?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?³ Mar?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Ân <carlos gnome-db org>
-
- * pt_BR.po: Gustavo Noronha Silva <kov debian org>
-
-2002-06-05 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: Also add one file: gnome-settings-keybindings.c
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-06-08 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-06-07 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-2002-06-07 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-06-06 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-06-06 Yanko Kaneti <yaneti declera com>
-
- * bg.po: Updated Bulgarian translation.
-
-2002-06-06 Zbigniew Chyla <chyla buy pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-06-06 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation.
-
-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)
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-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 Christian Rose <menthos menthos com>
-
- * sv.po: Fixed Swedish translation.
-
-2002-06-04 Gediminas Paulauskas <menesis delfi lt>
-
- * lt.po: Update Lithuanian translation
-
-2002-06-04 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vietnamese file
-
-2002-06-04 Yanko Kaneti <yaneti declera com>
-
- * bg.po (added): Bulgarian translation by
- Borislav Aleksandrov <B Aleksandrov cnsys bg>.
-
-2002-06-04 Zbigniew Chyla <chyla buy pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-06-04 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2002-06-04 Jordi Mallach <jordi sindominio net>
-
- * ca.po: Updated Catalan translation.
-
-Mon Jun 03 20:41:15 2002 George Lebl <jirka 5z com>
-
- * cs.po: update
-
-Mon Jun 03 20:25:25 2002 George Lebl <jirka 5z com>
-
- * cs.po: update
-
-Mon Jun 03 18:39:53 2002 George Lebl <jirka 5z com>
-
- * cs.po: update
-
-2002-06-04 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-06-03 Carlos Perell?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?³ Mar?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Ân <carlos gnome-db org>
-
- * es.po: Added '
-' to all emails at translation_credits.
-
-2002-06-03 Carlos Perell?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?³ Mar?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Ân <carlos gnome-db org>
-
- * es.po: Full translation.
-
-2002-06-03 Germ??n Poo-Caama?????????��������??????�������±o <gpoo ubiobio cl
-
- * es.po: Updated Spanish translation from
- Lucas Di Pentima <lucas lunix com ar>
-
-2002-06-03 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation
-
-2002-06-02 Seth Nickell <snickell stanford edu>
-
- reviewed by: <delete if not using a buddy>
-
- * ar.po:
- * az.po:
- * ca.po:
- * cs.po:
- * da.po:
- * de.po:
- * el.po:
- * en_GB.po:
- * es.po:
- * et.po:
- * fi.po:
- * fr.po:
- * ga.po:
- * gl.po:
- * hr.po:
- * hu.po:
- * it.po:
- * ja.po:
- * ko.po:
- * lt.po:
- * lv.po:
- * ms.po:
- * nl.po:
- * nn.po:
- * no.po:
- * pl.po:
- * pt.po:
- * pt_BR.po:
- * ro.po:
- * ru.po:
- * sk.po:
- * sl.po:
- * sv.po:
- * tr.po:
- * uk.po:
- * vi.po:
- * wa.po:
- * zh_CN.po:
- * zh_TW.po:
-
-2002-06-02 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2002-06-02 Christian Rose <menthos menthos com>
-
- * sv.po: Minor fix.
-
-2002-06-02 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-06-02 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-05-31 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-05-31 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-05-31 Ole Laursen <olau hardworking dk>
-
- * da.po: Fixed a lot of improper strings in Danish translation.
-
-2002-05-30 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-05-30 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Updated Vietnamese file
-
-2002-05-30 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-05-29 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation
-
-2002-05-28 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-05-27 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-05-27 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-05-27 Dmitry G. Mastrukov <dmitry taurussoft org>
-
- * ru.po: updated Russian translation
-
-2002-05-25 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-05-24 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-05-22 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-05-21 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation. Fixed crash-inducing html string.
-
-2002-05-21 Abel Cheung <maddog linux org hk>
-
- * POTFILES.in: Synced with source tree.
- * zh_TW.po: Updated traditional Chinese translation.
-
-2002-05-21 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation by Young-Ho Cha
- <ganadist chollian net>.
-
-2002-05-20 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2002-05-19 Vlad Harchev <hvv hippo ru>
-
- * ru.po: updated russian translation from Dmitry G. Mastrukov
- <dmitry taurussoft org>.
-
-2002-05-19 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-05-18 Jacob Berkman <jacob ximian com>
-
- * POTFILES.in: fixup
-
-2002-05-18 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-05-17 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-05-16 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-05-16 Gediminas Paulauskas <menesis delfi lt>
-
- * lt.po: Update Lithuanian translation
-
-2002-05-15 Jacob Berkman <jacob ximian com>
-
- * POTFILES.in: fix build again
-
-2002-05-15 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2002-05-15 Andrew V. Samoilov <kai cmail ru>
-
- * ru.po: Updated Russian translation.
- * uk.po: Updated Ukrainian translation.
-
-2002-05-14 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-05-14 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Updated Dutch translation (by Reinout van Schouwen).
-
-2002-05-14 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2002-05-13 jacob berkman <jacob ximian com>
-
- * POTFILES.in: add another windows file
-
-2002-05-13 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-05-12 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-05-12 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-05-11 Seth Nickell <snickell stanford edu>
-
- * POTFILES.in:
-
- Add the window capplet files.
-
-2002-05-10 Pablo Saratxaga <pablo mandrakesoft com>
-
- * ca.po: Updated Catalan file
- * vi.po: Updated Vietnamese file
-
-2002-05-07 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-05-06 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-05-04 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation and converted to UTF-8.
-
-2002-05-02 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Updated Dutch translation (Huib Kleinhout) UTF-8.
-
-2002-05-01 Germ??n Poo-Caama?????????��������??????�������±o <gpoo ubiobio cl>
-
- * es.po: Updated Spanish translation from
- H?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?©ctor Garc?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Âa ?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â?lvarez <hector scouts-es org>
-
-2002-04-30 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: added gnome-settings-daemon/*
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-04-30 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: added capplets/common/file-transfer-dialog.c
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-04-29 Pablo Saratxaga <pablo mandrakesoft com>
-
- * vi.po: Added Vietnamese file
- * wa.po: Updated Walloon file
-
-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 (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-04-28 jacob berkman <jacob localhost localdomain>
-
- * POTFILES.in: fix more theme stuff
-
-2002-04-27 Jacob Berkman <jacob dna ximian com>
-
- * POTFILES.in: remove the theme .desktop.in.in
-
-2002-04-26 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Updated Dutch translation (Ronald Hummelink).
-
-2002-04-26 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-04-25 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated french translation from work of
- Mathieu Gauthier-Pilote <mathieu g p videotron ca>.
-
-2002-04-24 Benedikt Roth <Benedikt Roth gmx net>
-
- * de.po: Small update for German translation.
-
-2002-04-24 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-04-24 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2002-04-23 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-04-22 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated french translation.
-
-2002-04-22 Mark McLoughlin <mark skynet ie>
-
- * POTFILES.in: add network preferences capplet
- files.
-
-2002-04-23 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Recommit an error-free file.
-
-2002-04-22 Jacob Berkman <jacob ximian com>
-
- * zh_TW.po: revert last commit as it has collision markers
-
-2002-04-22 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2002-04-21 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-04-21 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated french translation and converted
- to UTF-8.
-
-2002-04-21 Abel Cheung <maddog linux org hk>
-
- * .cvsignore: Added some file(s).
- * POTFILES.in: Synced with source tree.
-
-2002-04-19 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-04-19 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-04-18 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-04-18 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Updated Dutch translation by Ronald Hummelink.
-
-2002-04-16 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-04-15 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-04-15 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation from Dmitry Mastrukov.
-
-2002-04-15 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-04-10 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-04-09 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Dutch translation updated by Reinout van Schouwen.
-
-2002-04-09 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-04-09 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2002-04-06 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-04-05 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-04-04 jacob berkman <jacob ximian com>
-
- * POTFILES.in: remove sawfish files
-
-2002-04-03 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-04-01 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-04-01 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-04-01 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2002-03-31 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation (not completed).
-
-2002-03-28 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-03-28 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-03-29 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-03-27 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-03-27 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-03-26 jacob berkman <jacob ximian com>
-
- * POTFILES.in: remove screensaver .desktop file
-
-2002-03-26 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-03-25 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-03-24 jacob berkman <jacob ximian com>
-
- * POTFILES.in: revert .directory.in.in change as that breaks the
- build
-
-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>.
-
-2002-03-22 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-03-22 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <toivo linux ee>
-
- * et.po: Updated Estonian translation.
-
-2002-03-20 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-03-20 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-03-20 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-03-20 Jody Goldberg <jody gnome org>
-
- * POTFILES.in : Add accessibility/keyboard
-
-2002-03-19 Richard Hestilow <hestilow ximian com>
-
- * POTFILES.in: Add activate-settings-daemon.c.
-
-2002-03-19 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-03-18 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation by
- Khairulanuar Abd Majid <khairul ikhlas com>
-
-2002-03-17 Kjartan Maraas <kmaraas gnome org>
-
- * POTFILES.in: Update this some more.
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-03-16 Wang Jian <lark linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation by
- He Qiangqiang <carton 263 net>.
-
-
-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).
-
-2002-03-13 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2002-03-13 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-03-12 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-03-12 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-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.
-
-2002-03-10 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing file.
- * sv.po: Updated Swedish translation.
-
-2002-03-09 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-03-09 Christian Rose <menthos menthos com>
-
- * sv.po: Fixed Swedish translation.
-
-2002-03-08 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-03-07 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Updated Dutch translation (Huib Kleinhout).
-
-2002-03-07 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-03-07 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-03-06 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2002-03-05 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-03-05 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2002-03-05 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-03-04 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-03-04 Wang Jian <lark linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation by
- He QiangQiang <carton 263 net>.
-
-2002-03-03 Christian Rose <menthos menthos com>
-
- * sv.po: Fixed Swedish translation.
-
-2002-03-03 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-03-03 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-03-03 Abel Cheung <maddog linux org hk>
-
- * en_GB.po: Remove duplicate entry which is causing
- error in status page generation.
-
-2002-03-02 T?????????��������??????�������µivo Leedj????????��������??????�������¢???????��������??????��������???????��������??????�������¬rv <leedjarv interest ee>
-
- * et.po: Updated Estonian translation.
-
-2002-03-01 Pauli Virtanen <pauli virtanen hut fi>
-
- * fi.po: Updated Finnish translation.
-
-2002-02-28 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-02-28 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-02-27 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
- * POTFILES.in: Added missing file.
-
-2002-02-27 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-02-27 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-02-27 Christian Rose <menthos menthos com>
-
- * sv.po: Fixed Swedish translation.
-
-2002-02-27 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-02-26 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2002-02-24 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2002-02-23 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-02-23 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2002-02-22 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-02-22 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-02-21 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Committed updated Turkish translation by G?????????��������??????�������¶rkem.
-
-2002-02-20 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Updated traditional Chinese translation.
-
-2002-02-20 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-02-18 jacob berkman <jacob ximian com>
-
- * POTFILES.in: remove session .desktop file
-
-2002-02-18 Gediminas Paulauskas <menesis delfi lt>
-
- * lt.po: Updated Lithuanian translation.
-
-2002-02-12 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-02-10 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
- * POTFILES.in: Added some files.
-
-2002-02-09 Pauli Virtanen <ptvirtan cc hut fi>
-
- * fi.po: Updated Finnish translation and converted it to UTF-8.
-
-2002-02-09 Vincent van Adrighem <V vanAdrighem dirck mine nu>
-
- * nl.po: Updated Dutch translation (by Jan-Willem Harmanny)
-
-2002-02-07 Abel Cheung <maddog linux org hk>
-
- * POTFILES.in: Remove non-existant libsounds/sound-view.c
-
-2002-02-07 Changwoo Ryu <cwryu debian org>
-
- * ko.po: Updated Korean translation.
-
-2002-02-06 Duarte Loreto <happyguy_pt hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2002-02-05 Marius Andreiana <mandreiana yahoo com>
-
- * ro.po: updated and converted to UTF-8
-
-2002-02-02 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation and converted it to UTF-8.
-
-2002-01-31 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-01-30 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
- * POTFILES.in: Added some files.
-
-2002-01-30 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-01-28 Seth Nickell <snickell stanford edu>
-
- reviewed by: <delete if not using a buddy>
-
- * ChangeLog:
- * POTFILES.in:
-
-2002-01-28 Seth Nickell <snickell stanford edu>
-
- reviewed by: <delete if not using a buddy>
-
- * ChangeLog:
- * POTFILES.in:
-
-2002-01-28 Seth Nickell <snickell stanford edu>
-
- reviewed by: <delete if not using a buddy>
-
- * POTFILES.in:
-
-2002-01-28 Duarte Loreto <happyguy_pr hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2002-01-28 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-01-27 Christian Rose <menthos menthos com>
-
- * sv.po: Updated and converted to UTF-8.
-
-2002-01-27 Bradford Hovinen <hovinen ximian com>
-
- * POTFILES.in: Added capplets/file-types/category-names.h
-
-2002-01-27 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Updated Malay Translation.
-
-2002-01-27 Roy-Magne Mo <rmo sunnmore net>
-
- * nn.po: Updated Norwegian (nynorsk) translation.
-
-2002-01-21 Hasbullah Bin Pit <sebol ikhlas com>
-
- * ms.po: Added Malay Translation.
-
-2002-01-19 Duarte Loreto <happyguy_pr hotmail com>
-
- * pt.po: Updated Portuguese translation.
-
-2002-01-14 Bradford Hovinen <hovinen ximian com>
-
- * POTFILES.in: Update
-
-2001-12-13 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????Ã?Â?Ã?Â?Ã?Â?Ã?Â???????Ã?Â?Ã?Â?Ã?Â?Ã?Â¥l) translation.
-
-2002-01-09 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2002-01-09 Anders Carlsson <andersca gnu org>
-
- * POTFILES.in: Remove missing files.
-
-2002-01-07 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Sorted and added missing files.
- * sv.po: Updated Swedish translation.
-
-2001-12-26 Vasif Ismailogu MD <azerb_linux hotmail com>
-
- * az.po: updating Azerbaijani translation file
-
-2001-12-20 Bradford Hovinen <hovinen ximian com>
-
- * POTFILES.in: Update
-
-2001-12-19 Seth Nickell <snickell stanford edu>
-
- * POTFILES.in:
-
- Remove gnome-hint-properties.desktop.in
-
-2001-12-18 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Trivial update to traditional Chinese translation, and
- converted to UTF-8 encoding.
-
-2001-12-13 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????��������??????�������¯???????????��������??????��������) translation.
- * POTFILES.in: Updated this too.
-
-2001-12-13 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-12-11 H?????????��������??????�������¯???????????��������??????��������tor Garc?????????��������??????�������¯???????????��������??????�������� ?????????��������??????�������¯???????????��������??????��������varez <hector scouts-es org>
-
- * es.po: Updated Spanish Translation.
-
-2001-12-11 Wang Jian <lark linux net cn>
-
- * zh_CN.po: Updated Simplified Chinese translation by
- He Qiangqiang <carton 263 net>.
-
-2001-12-11 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-12-10 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2001-12-08 Havoc Pennington <hp pobox com>
-
- * POTFILES.in: remove applier.c which doesn't exist
-
-2001-11-30 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2001-11-12 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2001-11-11 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-11-07 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Committed updated Turkish translation by Nilgn.
-
-2001-11-07 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2001-11-06 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Committed updated Turkish translation by Nilgn.
-
-2001-11-01 Peteris Krisjanis <pecisk inbox lv>
-
- * lv.po: Updated Latvian translation by Artis Trops
- <hornet navigators lv>
-
-2001-10-26 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: More screensaver description translated.
-
-2001-10-25 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation by
- GNOME PL Team <translators gnome pl>.
-
-2001-10-24 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: More screensaver description translated.
-
-2001-10-23 Wang Jian <lark linux net cn>
-
- * zh_CN.po: Added Simplified Chinese translation by
- He Qiangqiang <carton 263 net>.
-
-2001-10-22 Christian Rose <menthos menthos com>
-
- * sv.po: Updated the Swedish translation somewhat.
-
-2001-10-20 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2001-10-15 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Trivial update to traditional Chinese translation, and
- reverted to Big5 encoding. (UTF8 is displayed as garbage in main
- interface)
-
-2001-10-14 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-10-13 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????��������??????�������¯???????????��������??????��������) translation.
- * nn.po: Updated Norwegian (nynorsk) translation.
-
-2001-10-13 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2001-10-07 Artis Trops <hornet navigators lv>
-
- * lv.po: Added Latvian translation.
-
-2001-10-01 Israel Escalante <israel ximian com>
-
- * POTFILES.in: Removed some *.c files that was called and
- don't exist.
-
-2001-10-01 Pablo Saratxaga <pablo mandrakesoft com>
-
- * ca.po: Updated Catalan file
-
-2001-09-25 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2001-09-23 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????��������??????�������¯???????????��������??????��������) translation.
- * nn.po: Updated Norwegian (nynorsk) translation.
- * POTFILES.in: Updated.
-
-2001-09-22 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-09-17 Carlos Perells Marmn <carlos gnome-db org>
-
- * cs.po: Fixed.
-
-2001-09-09 Wang Jian <lark linux net cn>
-
- * zh_CN.GB2312.po: Removed. It is not useful.
-
-2001-09-05 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2001-09-05 Abel Cheung <maddog linux org hk>
-
- * zh_TW.po: Slight update of traditional Chinese translation.
-
-2001-08-22 Gustavo Maciel Dias Vieira <gdvieira zaz com br>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2001-08-22 Abel Cheung <maddog linux org hk>
-
- * zh_TW.Big5.po: Converted to ...
- * zh_TW.po: UTF8 encoded file.
-
-2001-08-18 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2001-08-13 Abel Cheung <maddog linux org hk>
-
- * zh_TW.Big5.po: Update traditional Chinese translation.
-
-2001-08-12 Pablo Saratxaga <pablo mandrakesoft com>
-
- * ca.po: Updated Catalan file
- * wa.po: Updated Walloon file
- * el.po,hr.po: removed duplicate lines that made msgfmt/msgmerge fail
-
-2001-08-10 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2001-08-10 Carlos Perells Marmn <carlos gnome-db org>
-
- * POTFILES.in: Fixed the screensaver files.
- * es.po: Updated Spanish translation.
-
-2001-08-09 Richard Hestilow <hestilow ximian com>
-
- * Added lots of xml.h files to POTFILES.in. There were
- a bunch of xml files already here; this makes me think
- I may have done this wrong.
-
-2001-08-09 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation.
-
-2001-08-08 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2001-08-08 Abel Cheung <maddog linux org hk>
-
- * zh_TW.Big5.po: Reworked traditional Chinese translation.
-
-2001-08-07 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated french translation.
-
-2001-08-05 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Updated Turkish translation by Gvrkem.
-
-2001-08-02 Marius Andreiana <mandreiana yahoo com>
-
- * ro.po: updated
-
-2001-08-01 Christian Meyer <chrisime gnome org>
-
- * de.po: Update for German translation. (thanks mawa!)
-
-2001-07-30 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2001-07-28 Carlos Perells Marmn <carlos gnome-db org>
-
- * es.po: Updated Spanish translation.
-
-2001-07-28 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2001-07-28 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation.
-
-2001-07-27 Bradford Hovinen <hovinen ximian com>
-
- * RELEASE : 1.5.2
-
-2001-07-27 Zbigniew Chyla <cyba gnome pl>
-
- * POTFILES.in: Added control-center/Gnome.directory.in.in.
-
- * pl.po: Updated Polish translation.
-
-2001-07-27 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-07-26 Christian Rose <menthos menthos com>
-
- * sv.po: Modified Swedish translation. Thanks to
- Gvran Uddeborg <goeran uddeborg pp se> for his review.
-
-2001-07-27 Jarkko Ranta <jjranta cc joensuu fi>
-
- * fi.po: Updated Finnish translation by Pauli Virtanen.
-
-2001-07-26 Chema Celorio <chema celorio com>
-
- * POTFILES.in: remove rollback.c from the POTFILES.in
- as rollback is not beeing built
-
-2001-07-26 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2001-07-26 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2001-07-25 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian (bokm?????????��������??????�������¯???????????��������??????��������) translation.
- * nn.po: Updated Norwegian (nynorsk) translation.
- * POTFILES.in: Updated.
-
-2001-07-25 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2001-07-21 Ole Laursen <olau hardworking dk>
-
- * da.po: Updated Danish translation.
-
-2001-07-21 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2001-07-20 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation.
-
-2001-07-20 Zbigniew Chyla <cyba gnome pl>
-
- * POTFILES.in: Added capplets/default-applications/interface.c,
- capplets/default-applications/default-applications.desktop.in.in.
-
-2001-07-20 Kjartan Maraas <kmaraas gnome org>
-
- * nn.po: Updated Norwegian (nynorsk) translation.
- * no.po: Updated Norwegian (bokm?????????��������??????�������¯???????????��������??????��������) translation.
-
-2001-07-20 Pablo Saratxaga <pablo mandrakesoft com>
-
- * wa.po: Updated Walloon file
-
-2001-07-20 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-07-20 Chema Celorio <chema celorio com>
-
- * RELEASE : 1.5.0
-
-2001-07-20 Takayuki KUSANO <AE5T-KSN asahi-net or jp>
-
- * ja.po: Remove duplicated entry.
-
-2001-07-19 Chema Celorio <chema celorio com>
-
- * POTFILES.in: remove prefs widget.c
-
-2001-07-19 Carlos Perells Marmn <carlos gnome-db org>
-
- * es.po: Updated Spanish translation.
-
-2001-07-19 Carlos Perells Marmn <carlos gnome-db org>
-
- * POTFILES.in: some /s/desktop.in/desktop.in.in/
-
-2001-07-19 Chema Celorio <chema celorio com>
-
- * POTFILES.in: remove Gnome.in since we use xml tools
-
-2001-07-18 Kjartan Maraas <kmaraas gnome org>
-
- * nn.po: Updated Norwegian (nynorsk) translation.
- * no.po: Updated Norwegian (bokm?????????��������??????�������¯???????????��������??????��������) translation.
-
-2001-07-17 Carlos Perells Marmn <carlos gnome-db org>
-
- * *.po: Added the strings from Sawfish .desktop files
-
-2001-07-17 Bradford Hovinen <hovinen ximian com>
-
- * POTFILES.in: Removed rollback files
- Removed capplets/sound/prefs-widget.c
- Removed root-manager files
-
-2001-07-16 Carlos Perells Marmn <carlos gnome-db org>
-
- * no.po: Solved some conflicts with my patch.
-
-2001-07-14 Carlos Perells Marmn <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.
-
-2001-07-15 Kjartan Maraas <kmaraas gnome org>
-
- * nn.po: Added Norwegian (nynorsk) translation.
- * no.po: Updated Norwegian (bokm?????????��������??????�������¯???????????��������??????��������) translation.
-
-2001-07-10 Kai Lahmann <kl linuxfaqs de>
-
- * POTFILES.in: Updated new files (rollback...)
- * POTFILES.ignore: removed files that doesn't exist any more
- * de.po: Updated German translation
-
-2001-07-09 Christopher R. Gabriel <cgabriel cgabriel org>
-
- * it.po: Updated italian translation.
-
-2001-06-25 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2001-06-20 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2001-06-07 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Added missing file.
- * sv.po: Updated Swedish translation.
-
-2001-05-29 Marius Andreiana <mandreiana yahoo com>
-
- * ro.po: updated
-
-2001-05-22 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2001-05-21 Pablo Saratxaga <pablo mandrakesoft com>
-
- * ko.po,zh*.po: fixed invalid multibyte
-
-2001-04-18 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-04-09 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2001-03-30 Fatih Demir <kabalak gtranslator org>
-
- * .cvsignore: Ignore the "messages" file.
-
-2001-03-16 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2001-03-14 Fatih Demir <kabalak gtranslator org>
-
- * tr.po: Committed updated Turkish translation
- by Vedat.
-
- * ko.po: Committed updated Korean translation.
-
-2001-03-13 Christian Meyer <chrisime gnome org>
-
- * de.po: Updated German translation.
-
-2001-03-03 Pablo Saratxaga <pablo mandrakesoft com>
-
- * es.po: Updated Spanish file
-
-2001-02-23 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Fixed Slovak translation.
-
-2001-02-21 Fatih Demir <kabalak gtranslator org>
-
- * ko.po: Committed updated Korean transalation.
-
-2001-02-19 Almer S. Tigelaar <almer gnome org>
-
- * nl.po: Updated Dutch translation.
-
-2001-02-18 Simos Xenitellis <simos hellug gr>
-
- * el.po: Updated Greek translation (fixed font).
-
-2001-02-16 Akira TAGOH <tagoh gnome gr jp>
-
- * ja.po: Updated Japanese translation.
-
-2001-02-14 Jarkko Ranta <jjranta cc joensuu fi>
-
- * fi.po: UPdated Finnish translation by Pauli Virtanen
-
-2001-02-10 Christian Meyer <cm ggtt de>
-
- * de.po: Corrections.
-
-2001-02-09 Christian Meyer <cm ggtt de>
-
- * de.po: Updated German translation.
-
-2001-02-09 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2001-02-05 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated french translation.
-
-2001-01-29 Christophe Merlet <christophe merlet net>
-
- * fr.po: Updated french translation.
-
-2001-01-28 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2001-01-26 Marius Andreiana <mandreiana yahoo com>
-
- * ro.po: Updated Romanian translation
-
-2001-01-26 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2001-01-25 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2001-01-24 jacob berkman <jacob ximian com>
-
- * POTFILES.in: remove removed files
-
-2001-01-23 Fatih Demir <kabalak gmx net>
-
- * tr.po: Committed updated Turkish translation
- by Irfan Macit.
-
-2001-01-19 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2001-01-20 Fatih Demir <kabalak gmx net>
-
- * ko.po: Committed updated Korean translation.
-
-2001-01-19 Christophe Merlet <christophe merlet net>
-
- * fr.po: updated french translation.
- * ru.po: updated russian translation from frob.
-
-2001-01-17 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2001-01-16 Fatih Demir <kabalak gmx net>
-
- * tr.po: Committed an updated Turkish
- translation.
-
-2001-01-13 Simos Xenitellis <simos hellug gr>
-
- * el.po: Partial update of Greek translation.
-
-2001-01-11 Christophe Merlet <christophe merlet net>
-
- * fr.po: updated French translation.
-
-2001-01-09 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2001-01-09 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2001-01-04 Christophe Merlet <christophe merlet net>
-
- * fr.po: updated French translation.
-
-2001-01-03 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2000-12-29 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
- * POTFILES.in: Added some missing screensaver descriptions.
-
-2000-12-27 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2000-12-22 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
- * POTFILES.in: Added some missing screensaver descriptions.
-
-2000-12-21 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2000-12-20 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2000-12-19 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2000-12-18 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2000-12-18 Christopher R. Gabriel <cgabriel softwarelibero org>
-
- * it.po: Updated italian translation
-
-2000-12-18 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2000-12-17 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Updated Azeri file
-
-2000-12-13 Christophe Merlet <christophe merlet net>
-
- * fr.po: updated French translation.
-
-2000-12-12 Stanislav Visnovsky <visnovsky nenya ms mff cuni cz>
-
- * sk.po: Updated Slovak translation.
-
-2000-12-11 Pablo Saratxaga <pablo mandrakesoft com>
-
- * az.po: Added Azeri file
- * fr.po,pl.po: fixed header
- * sk.po: copied sk.po from stable branch
-
-2000-12-05 Simos Xenitellis <simos hellug gr>
-
- * el.po: Update of Greek translation.
-
-2000-11-25 Karl Eichwalder <ke suse de>
-
- * de.po: Update.
-
-2000-11-14 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation
-
-2000-11-11 Jarkko Ranta <jjranta cc joensuu fi>
-
- * fi.po: Updated Finnish Translation
-
-2000-10-30 Zbigniew Chyla <cyba gnome pl>
-
- * pl.po: Updated Polish translation.
-
-2000-10-28 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2000-10-22 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2000-10-21 Karl Eichwalder <ke suse de>
-
- * de.po: Update.
-
-2000-10-16 Stanislav Brabec <utx penguin cz>
-
- * fr.po: Removed bug.
-
-2000-10-15 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2000-10-14 Christian Meyer <cm ggtt de>
-
- * de.po: Updated German translation.
-
-2000-10-14 Bradford Hovinen <hovinen helixcode com>
-
- * POTFILES.in: Added rorschach.xml.h
-
-2000-10-12 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
- * POTFILES.in: Updated.
- * POTFILES.ignore: Updated this.
-
-2000-10-11 Stanislav Brabec <utx penguin cz>
-
- * cs.po: Few updates.
-
-2000-10-09 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2000-10-09 Christophe Merlet <christophe merlet net>
-
- * fr.po: updated French translations.
-
-2000-10-09 Christian Meyer <cm ggtt de>
-
- * de.po: Updazed German translation.
-
-2000-10-08 Bradford Hovinen <hovinen helixcode com>
-
- * POTFILES.in: Updated translation files
- Added xml.h files
-
-2000-09-03 Christian Rose <menthos menthos com>
-
- * POTFILES.in: Removed entries for missing .xml.h files.
-
-2000-09-26 Christian Meyer <linux chrisime de>
-
- * de.po: Updated German translation. Some typos were fixed.
-
-2000-09-25 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
- * POTFILES.in: Updated.
- * POTFILES.ignore: Added this.
-
-2000-09-11 Ruben Lopez <ryu gpul org>
-
- * gl.po: Updated Galician translation.
-
-2000-09-11 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2000-09-10 Bradford Hovinen <hovinen helixcode com>
-
- * fr.po: Updated French translations
- (courtesy of Christophe Merlet <c merlet agglo-pau fr>)
-
-2000-09-03 Christian Rose <menthos menthos com>
-
- * sv.po: Updated Swedish translation.
-
-2000-09-02 Takayuki KUSANO <AE5T-KSN asahi-net or jp>
-
- * ja.po: Updated Japanese translation.
-
-2000-08-19 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2000-08-17 Kai Lahmann <kl linuxfaqs de>
-
- * de.po: Updated German translation
-
-2000-08-17 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2000-08-17 Christopher R. Gabriel <cgabriel softwarelibero org>
-
- * it.po: Updated Italian translation.
-
-2000-08-15 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2000-08-14 Kai Lahmann <kl linuxfaqs de>
-
- * de.po: Updated German translation
-
-2000-08-12 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
- * POTFILES.in: added new/deleted old files.
-
-2000-08-02 Kjartan Maraas <kmaraas gnome org>
-
- * no.po: Updated Norwegian translation.
-
-2000-08-02 Takayuki KUSANO <AE5T-KSN asahi-net or jp>
-
- * ja.po: Updated Japanese translation.
-
-2000-07-16 Pablo Saratxaga <pablo mandrakesoft com>
-
- * el.po: Updated Greek file
-
-2000-07-15 Robert Brady <rwb197 zepler org>
-
- * en_GB.po: Updated British translation.
-
-2000-07-13 Valek Filippov <frob df ru>
-
- * de.po: updated translation from Kai Lahmann (kl linuxfaqs de).
-
-2000-06-12 Pauli Virtanen <pauli virtanen saunalahti fi>
-
- * fi.po: finnish update.
-
-2000-05-22 Fellmann Joaquim <joaquim hrnet fr>
-
- * fr.po: Updated French translation
-
-2000-05-20 Valek Filippov <frob df ru>
-
- * ru.po: updated russian translation.
-
-2000-04-19 Pablo Saratxaga <pablo mandrakesoft com>
-
- * da.po: Updated Danish file
- * ca.po: Updated Catalan file
-
-2000-04-16 Pablo Saratxaga <pablo mandrakesoft com>
-
- * lt.po: Updated Lithuanian file
-
-2000-04-15 Fatih Demir <kabalak gmx net>
-
- * tr.po : Added it !
-
-2000-04-11 Jesus Bravo Alvarez <jba pobox com>
-
- * gl.po: Updated Galician translation from stable branch.
-
-2000-04-07 Pablo Saratxaga <pablo mandrakesoft com>
-
- * lt.po: Updated Lithuanian translation file
-
-2000-04-05 Pablo Saratxaga <pablo mandrakesoft com>
-
- * es.po: Updated Spanish file
-
-2000-04-05 Dan Damian <dand dnttm ro>
-
- * ro.po: Updated Romanian translation.
-
-2000-04-04 Zbigniew Chyla <chyla buy pl>
-
- * pl.po: Updated translation.
-
-2000-03-4 Pauli Virtanen <pauli virtanen saunalahti fi>
- * fi.po: Updated Finnish translation.
-
-2000-03-31 Spiros Papadimitriou <spapadim+ cs cmu edu>
-
- * el.po: Updated Greek translation.
-
-2000-03-29 Pablo Saratxaga <pablo mandrakesoft com>
-
- * lt.po: Added Lithuanian file
- * el.po,pl.po: small change to po header, so msgfmt -v works
-
-2000-03-27 Karl EICHWALDER <ke suse de>
-
- * de.po: Update.
-
-2000-03-13 Alastair McKinstry <mckinstry computer org>
-
- * ga.po: More translations.
-
-2000-03-11 Alastair McKinstry <mckinstry computer org>
-
- * ga.po: Updated Irish translation.
-
-2000-02-27 Christopher R. Gabriel <cgabriel firenze linux it>
-
- * it.po: updated italian translation.
-
-2000-01-31 Yuan-Chung Cheng <platin linux org tw>
-
- * zh_CN.GB2312.po: from TurboLinux Chinese Develop Team.
-
-2000-01-23 Spiros Papadimitriou <spapadim+ cs cmu edu>
-
- * el.po: Original Greek translation (missing a few msgs).
-
-2000-01-03 Kjartan Maraas <kmaraas online no>
-
- * update.sh: A little script that lets people
- update the .pot file without makefiles etc.
-
-1999-12-29 Zbigniew Chyla <chyla alice ci pwr wroc pl>
-
- * pl.po: Updated translation.
-
-1999-11-26 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated Norwegian translation.
-
-1999-11-06 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated Norwegian translation.
-
-1999-11-01 Yuri Syrota <rasta renome rovno ua>
-
- * gl.po: Updated the galician translation
-
-1999-10-31 Ruben Lopez <ryu mundivia es>
-
- * gl.po: Updated the galician translation
-
-1999-10-28 Yuri Syrota <rasta renome rovno ua>
-
- * uk.po: Added Ukrainian translation.
-
-1999-10-24 Ruben Lopez <ryu mundivia es>
-
- * gl.po: Added Galician translation.
-
-1999-10-07 Rodrigo Stulzer Lopes <rodrigo conectiva com br>
-
- * pt_BR.po: Updated.
-
-1999-10-07 Karl Eichwalder <ke suse de>
-
- * de.po: update.
-
-1999-10-06 Pablo Saratxaga <pablo mandrakesoft com>
-
- * da.po: updated Danish language file
-
-1999-10-05 Sergey Panov <sipan mit edu>
-
- * ru.po: updated Russian language file
-
-1999-10-05 Pablo Saratxaga <pablo mandrakesoft com>
-
- * es.po: updated spanish language file
-
-1999-10-05 Sergey Panov <sipan mit edu>
-
- * ru.po: updated Russian language file
-
-1999-10-01 Jonathan Blandford <jrb redhat com>
-
- * da.po: added po file from <Birger Langkjer>
-
-1999-10-01 Pablo Saratxaga <pablo mandrakesoft com>
-
- * es.po: updated spanish language file
- * da.po: updated danish language file
- * nl.po,pl.po: minor fixes (added some
- in nl.po, enabled the
- header in pl.po to allow msgfmt -v to give interesting output)
-
-1999-09-30 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated Norwegian translation.
-
-1999-09-30 Tomas Ogren <stric ing umu se>
-
- * sv.po: Updated.
-
-1999-09-30 Rodrigo Stulzer Lopes <rodrigo conectiva com br>
-
- * pt_BR.po: Updated.
-
-1999-09-29 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated Norwegian translation.
-
-1999-09-29 Yukihiro Nakai <nacai iname com>
-
- * ja.po: Update from Itani Eiichiro.
-
-1999-09-28 Kjartan Maraas <kmaraas online no>
-
- * ro.po: Added Romainan translation from Dan
- Damian <dand dnttm ro>.
-
-1999-09-27 Richard Hult <rhult hem2 passagen se>
-
- * sv.po: Updated Swedish translation.
-
-1999-09-27 Zbigniew Chyla <chyla alice ci pwr wroc pl>
-
- * pl.po: Updated translation.
-
-1999-09-26 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-09-26 Anders Carlsson <andersca gnu org>
-
- * sv.po: Updated swedish translation
-
-1999-09-24 Rodrigo Stulzer Lopes <rodrigo conectiva com br>
-
- * pt_BR.po: included
-
-1999-09-22 Vincent Renardias <vincent ldsol com>
-
- * fr.po: Updated for 1.0.40.
-
-1999-09-21 Karl Eichwalder <ke suse de>
-
- * de.po: Update.
-
-1999-09-21 Zbigniew Chyla <chyla alice ci pwr wroc pl>
-
- * pl.po: Updated translation.
-
-1999-09-21 Changwoo Ryu <cwryu adam kaist ac kr>
-
- * ko.po: Updated translation.
-
-1999-09-20 Karl Eichwalder <ke suse de>
-
- * de.po: Update.
-
-1999-09-17 Lauris Kaplinski <lauris ariman ee>
-
- * et.po: Added Estonian translation
-
-1999-09-17 Anders Carlsson <anders carlsson tordata se>
-
- * sv.po: Updated translation
-
-1999-09-17 Kjartan Maraas <kmaraas online no>
-
- * da.po: Updated Danish translation from Kenneth
- Christiansen <kenneth ripen dk>.
-
-1999-09-13 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-09-14 Karl Eichwalder <ke suse de>
-
- * de.po: Update.
-
-1999-09-10 Zbigniew Chyla <chyla alice ci pwr wroc pl>
-
- * pl.po: Updated translation.
-
-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.
-
-1999-09-03 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-09-02 Yukihiro Nakai <nacai iname com>
-
- * ja.po: Updated translation from ITANI Eiichiro.
-
-1999-09-02 Zbigniew Chyla <chyla alice ci pwr wroc pl>
-
- * pl.po: Updated translation.
-
-1999-08-31 Kjartan Maraas <kmaraas online no
-
- * da.po: Updated translation from Birger Langkjer
- <birger langkjer image dk>
-
-1999-08-25 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-08-23 Mikko Rauhala <mjr iki fi>
-
- * fi.po: updated
-
-1999-08-19 Pablo Saratxaga <srtxg chanae alphanet ch>
-
- * ca.po: added catalan language file from
- al011097 alumail uji es (Vilata Balaguer Ivan)
-
-1999-08-18 Pablo Saratxaga <srtxg chanae alphanet ch>
-
- * es.po: updated spanish translation
-
-1999-08-18 Sergey Panov <sipan mit edu>
-
- * ru.po: Updated translation(and a lot of work ahead :( ).
-
-1999-08-16 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-08-15 Mikko Rauhala <mjr iki fi>
-
- * fi.po: Updated.
-
-1999-08-13 Vincent Renardias <vincent ldsol com>
-
- * fr.po: Updated for 1.0.6.
-
-1999-08-13 Changwoo RYU <cwryu adam kaist ac kr>
-
- * ko.po: updated translation.
-
-1999-08-12 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-08-10 Changwoo Ryu <cwryu adam kaist ac kr>
-
- * ko.po: Updated translation.
-
-1999-08-05 Richard Hult <rhult hem2 passagen se>
-
- * sv.po: Updated translation slightly.
-
-1999-08-05 Anders Carlsson <anders carlsson tordata se>
-
- * sv.po: Updated translation.
-
-1999-08-04 Karsten Weiss <karsten addx au s shuttle de>
-
- * de.po: Updated translation.
-
-1999-08-01 Tom Tromey <tromey cygnus com>
-
- * POTFILES.in: Added session-properties/startup-programs.c.
-
-1999-07-30 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-07-29 Matthias Warkus <mawa iname com>
-
- * de.po: little update
-
-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.
-
-1999-07-24 Karsten Weiss <karsten addx au s shuttle de>
-
- * de.po: Updated translation.
-
-1999-07-21 Vincent Renardias <vincent ldsol com>
-
- * fr.po: Updated thanks to Thibaut's patch.
-
-1999-07-18 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-07-01 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-06-26 Mikko Rauhala <mjr iki fi>
-
- * fi.po: Finnish updates.
-
-1999-06-23 Yukihiro Nakai <nacai iname com>
-
- * ja.po: Japanese translation updated from ITANI EIICHIRO.
-
-1999-06-16 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1999-06-04 Kjartan Maraas <kmaraas online no>
-
- * en_GB.po: added british translation from Robert Brady.
-
-1999-05-20 Yukihiro Nakai <nacai iname com>
-
- * ja.po: Japanese translation updated from ITANI EIICHIRO.
-
-1999-05-19 Matthias Warkus <mawa iname com>
-
- * de.po: Massive update.
-
-1999-05-12 Shooby Ban <bansz szif hu>
-
- * hu.po: updated.
-
-1999-05-05 Raja R Harinath <harinath cs umn edu>
-
- * no.po: Add `
-' to translation.
-
-1999-05-05 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-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'.
-
-1999-04-28 Ettore Perazzoli <ettore comm2000 it>
-
- * it.po: Updated.
-
- * POTFILES.in: Silly me. Removed e-conf stuff.
-
-1999-04-15 Yukihiro Nakai <nacai iname com>
-
- * ja.po: Updated.
-
-1999-04-14 Matthias Warkus <mawa iname com>
-
- * de.po: Updated.
-
-1999-04-13 bertrand <Bertrand Guiheneuf inria fr>
-
- * fr.po: update some french translations
-
-1999-04-13 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-04-05 Mikko Rauhala <mjr iki fi>
-
- * fi.po: Completed and updated translation.
-
-1999-04-03 Ettore Perazzoli <ettore comm2000 it>
-
- * POTFILES.in: Added
- `capplets/wm-properties/wm-properties-capplet.c',
- `capplets/e-conf/e-conf.c', `capplets/e-conf/e-conf_file.c',
- `capplets/e-conf/e-conf_filesel.c'.
-
-1999-04-02 Ettore Perazzoli <ettore comm2000 it>
-
- * it.po: Updated translation.
-
-1999-03-26 Kjartan Maraas <kmaraas online no>
-
- * no.po: Updated translation.
-
-1999-03-16 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1999-03-14 Shooby Ban <bansz szif hu>
-
- * hu.po: updated hungarian translations
-
-1999-02-25 Kjartan Maraas <kmaraas fib hl no>
-
- * no.po: Updated.
-
-1999-02-23 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1999-02-15 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1999-02-06 Changwoo Ryu <cwryu adam kaist ac kr>
-
- * POTFILES.in: Added
- capplets/gnome-edit-properties/gnome-edit-properties.c.
-
-1998-12-21 Yukihiro Nakai <Nakai Abricot co jp>
-
- * ja.po: Updated.
-
-1998-12-19 Changwoo Ryu <cwryu adam kaist ac kr>
-
- * ko.po: Updated for 0.99.
-
-1998-12-12 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * POTFILES.in: Added control-center/capplet-manager.c,
- capplets/ui-properties/ui-properties.c,
- capplets/url-properties/url-properties.c,
- capplets/background-properties/property-background.c
-
-1998-12-11 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1998-12-10 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * .cvsignore: Change gnome-core.pot to control-center.pot.
-
- * pt.po: Removed the translations from gnome-core.
-
-1998-12-05 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1998-11-30 Tuomas Lukka <lukka iki fi>
-
- * fi.po: updates
-
-1998-11-24 Tuomas Lukka <lukka iki fi>
-
- * fi.po: updates
-
-1998-11-21 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * POTFILES.in: Added control-center and capplets files.
-
- * pt.po: Updates.
-
-1998-11-18 Tuomas Lukka <lukka iki fi>
-
- * fi.po: make it compile (blush), patch from Richard Hult
-
-1998-11-16 Tuomas Lukka <lukka iki fi>
-
- * fi.po: some updates
-
-1998-10-28 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1998-10-14 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-1998-10-09 Federico Mena Quintero <federico nuclecu unam mx>
-
- * ja.po: Updated. Thanks to Yukihiro Nakai for the patches.
-
-1998-09-22 Federico Mena Quintero <federico nuclecu unam mx>
-
- * POTFILES.in: Removed references to applets/freshapp, since it
- not being distributed.
- Removed references to applets/gkb.
- Removed references to applets/slashapp.
- Removed references to gemvt.
-
-1998-09-15 Ville Hautam?????????��������??????�������¯???????????��������??????��������i <villeh cs joensuu fi>
-
- * fi.po: Updated.
-
-1998-08-21 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-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.
-
-1998-08-18 Nuno Ferreira <nmrf rnl ist utl pt>
-
- * pt.po: Updated.
-
-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
-.
-
-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 `
-' 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
-.
-
-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.
diff --git a/shell/ChangeLog b/shell/ChangeLog
index fab824d..3d2a7ae 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,105 +1,3 @@
-==================== 2.25.90 ====================
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-==================== 2.25.1 ====================
-
-==================== 2.24.0.1 ====================
-
-==================== 2.23.2 ====================
-
-2008-02-10 Kjartan Maraas <kmaraas gnome org>
-
- * control-center.schemas.in: Add missing full stops in the long
- description.
-
-2007-11-05 Scott Reeves <sreeves novell com>
-
- * control-center.schemas.in: remove reference to background.desktop
-
-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)
-
-2007-08-29 Rodrigo Moya <rodrigo gnome-db org>
-
- * gnomecc.desktop.in.in: reverted last commit made by mistake.
-
-2007-05-22 Stanislav Brabec <sbrabec suse cz>
-
- * gnomecc.desktop.in.in: Removed superfluous X-SuSE-translate tag.
-
-2007-04-27 Rodrigo Moya <rodrigo gnome-db org>
-
- * gnomecc.desktop.in.in: renamed Bugzilla product.
-
-2007-02-12 Scott Reeves <sreeves novell com>
-
- * control-center.c: Use smaller icons by default,
- partial fix for #405078
-
-2007-01-30 Jens Granseuer <jensgr gmx net>
-
- * control-center.c: (main): fix typo in usage string (noticed by
- Christian Persch, fixes bug #398361)
-
-2007-01-30 Scott Reeves <sreeves novell com>
-
- * control-center.c: Fix for inconsistent GenericNames- add a flag
- controlling display or not.
- https://bugzilla.novell.com/show_bug.cgi?id=185957
-
-2007-01-29 Kjartan Maraas <kmaraas gnome org>
-
- * control-center.c: (get_actions_list): ANSIfication
- of function declaration.
-
-2007-01-26 Scott Reeves <sreeves novell com>
-
- * control-center.c: respect the exit_on_close flag
-
-2007-01-26 Rodrigo Moya <rodrigo gnome-db org>
-
- * control-center.schemas.in: added 'Change theme' and 'Set preferred
- applications' to 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.
-
-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.
-
-2007-01-19 Rodrigo Moya <rodrigo gnome-db org>
-
- * control-center.c (main): program name is gnome-control-center.
-
-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.
-
-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.
-
-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)
-
-2006-11-13 Rodrigo Moya <rodrigo novell com>
-
- * gnomecc.desktop.in.in: added missing file.
-
- * Makefile.am: install .desktop file.
diff --git a/typing-break/ChangeLog b/typing-break/ChangeLog
index 043a90d..3d2a7ae 100644
--- a/typing-break/ChangeLog
+++ b/typing-break/ChangeLog
@@ -1,318 +1,3 @@
-==================== 2.25.90 ====================
-
-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)
-
-==================== 2.25.3 ====================
-==================== 2.25.2 ====================
-
-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)
-
-==================== 2.25.1 ====================
-
-==================== 2.24.0.1 ====================
-
-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)
-
-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)
-
-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)
-
-==================== 2.23.2 ====================
-
-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"
-
-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
-
-2008-02-05 Jens Granseuer <jensgr gmx net>
-
- * drwright.c: add a comment for translators (bug #514598)
-
-2007-06-26 Michael Terry <mike mterry name>
-
- * Makefile.am: Update icon cache on uninstall as well as install.
- Part of bug #450777.
-
-2007-06-08 Christian Persch <chpe gnome org>
-
- * main.c: (main): NULL-terminate the options array.
- * ChangeLog: fixed.
-
-2007-06-05 Christian Persch <chpe gnome org>
-
- * typing-break/main.c: (main): Use GOption to parse the arguments. Bug
- #444399.
-
-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).
-
-2007-06-05 Ross Burton <ross openedhand com>
-
- * main.c:
- * Makefile.am:
- Don't use libgnome (#443554). Also clean up dist rules.
-
-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.
-
-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.
-
-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>
-
-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.
-
-2006-07-25 Vincent Untz <vuntz gnome org>
-
- * eggtrayicon.[ch]: kill
-
-2006-07-25 Vincent Untz <vuntz gnome org>
-
- Fixes #348640
-
- * drwrigth.c (popup_about_cb): use GtkAboutDialog, not GtkDialog.
-
-2006-07-25 Vincent Untz <vuntz gnome org>
-
- Fixes #348639
-
- * Makefile.am:
- * drwrigth.c: use GtkStatusIcon instead of libegg.
-
- * eggtrayicon.c: removed.
-
-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.
-
-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.
-
-2005-11-14 Kjartan Maraas <kmaraas gnome org>
-
- * drw-selection.h: ANSIfy function declaration.
-
-2005-10-07 Rodrigo Moya <rodrigo novell com>
-
- Fixes #318231
-
- * eggtrayicon.[ch]: updated to latest eggtrayicon code, to fix weird
- spacing between icons.
-
-2005-08-18 Rodrigo Moya <rodrigo novell com>
-
- * drw-break-window.c (drw_break_window_dispose): fixed leaked timer.
-
-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.
-
- * 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.
-
-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.
-
-2004-12-25 Kjartan Maraas <kmaraas gnome org>
-
- * drw-selection.c: (drw_selection_start): ANSIfication.
- * drwright.c: NULL vs. 0
-
-2004-10-14 Jody Goldberg <jody gnome org>
-
- * Release 2.8.1
-
-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.
-
-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.
-
-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.
-
-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-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.
-
-2004-02-13 Jody Goldberg <jody gnome org>
-
- * Release 2.5.3
-
-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.
-
-2004-01-14 Jody Goldberg <jody gnome org>
-
- * Release 2.5.2
-
-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
-
-2003-09-30 Danilo Å egan <dsegan gmx net>
-
- * drwright.c (update_tooltip): Use ngettext for plural-forms,
- fixes bug #117997.
-
-2003-08-24 Richard Hult <richard imendio com>
-
- * Makefile.am:
- * drw-break-window.c:
- * drwright.c: Multihead support, fixes bug #119827.
-
-Thu Jul 31 17:41:45 2003 Jonathan Blandford <jrb redhat com>
-
- * drwright.c (popup_preferences_cb): add properties dialog,
- #118323
-
-Thu Jul 31 14:56:41 2003 Jonathan Blandford <jrb redhat com>
-
- * drwright.c (popup_quit_cb): remove bogus popup_quit code.
-
-Thu Jul 31 14:56:13 2003 Jonathan Blandford <jrb redhat com>
-
- * ChangeLog: Started a new ChangeLog for the typing break.
+The ChangeLog is auto-generated when releasing. If you are seeing this, use
+git log for a detailed list of changes.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]