summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradford Hovinen <hovinen@ximian.com>2001-09-04 13:43:48 +0000
committerBradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org>2001-09-04 13:43:48 +0000
commit1d03bbd1c5c55c158a240c6bec52e5075d1b4ebb (patch)
tree93137603f92127469bff2918f6e1f26a69f79347
parent608b418c3e2b5c9e287d6cba42897568955249c3 (diff)
downloadgnome-control-center-1d03bbd1c5c55c158a240c6bec52e5075d1b4ebb.tar.gz
2001-08-29 Bradford Hovinen <hovinen@ximian.com> * RELEASE : 1.5.7 * archive.c (foreach_build_list_cb): Don't unref the location if it is deleted (load_all_locations): Check if the location is marked deleted and throw it away if so * location.c (location_new): Don't unref parent location
-rw-r--r--ChangeLog4
-rw-r--r--archiver/ChangeLog5
-rw-r--r--archiver/archive.c10
-rw-r--r--capplets/background/Makefile.am1
-rw-r--r--capplets/rollback/Makefile.am53
-rw-r--r--capplets/rollback/main.c23
-rw-r--r--capplets/rollback/rollback.glade155
-rw-r--r--configure.in2
-rw-r--r--po/az.po2
-rw-r--r--po/ca.po2
-rw-r--r--po/da.po2
-rw-r--r--po/de.po2
-rw-r--r--po/el.po2
-rw-r--r--po/es.po2
-rw-r--r--po/fi.po2
-rw-r--r--po/fr.po2
-rw-r--r--po/ga.po2
-rw-r--r--po/hr.po2
-rw-r--r--po/ja.po2
-rw-r--r--po/nn.po2
-rw-r--r--po/no.po2
-rw-r--r--po/pl.po2
-rw-r--r--po/pt_BR.po2
-rw-r--r--po/ru.po2
-rw-r--r--po/sk.po2
-rw-r--r--po/sl.po2
-rw-r--r--po/sv.po2
-rw-r--r--po/tr.po2
-rw-r--r--po/uk.po2
-rw-r--r--po/wa.po2
-rw-r--r--po/zh_TW.po2
31 files changed, 209 insertions, 90 deletions
diff --git a/ChangeLog b/ChangeLog
index 716f2939b..ab45a0b48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-29 Bradford Hovinen <hovinen@ximian.com>
+
+ * RELEASE : 1.5.7
+
2001-08-23 Bradford Hovinen <hovinen@ximian.com>
* RELEASE : 1.5.6
diff --git a/archiver/ChangeLog b/archiver/ChangeLog
index ecd1b404d..c2e1d6df5 100644
--- a/archiver/ChangeLog
+++ b/archiver/ChangeLog
@@ -1,5 +1,10 @@
2001-08-29 Bradford Hovinen <hovinen@ximian.com>
+ * archive.c (foreach_build_list_cb): Don't unref the location if
+ it is deleted
+ (load_all_locations): Check if the location is marked deleted and
+ throw it away if so
+
* location.c (location_new): Don't unref parent location
2001-08-28 Bradford Hovinen <hovinen@ximian.com>
diff --git a/archiver/archive.c b/archiver/archive.c
index fd6d8ad65..6b01e3d65 100644
--- a/archiver/archive.c
+++ b/archiver/archive.c
@@ -701,8 +701,6 @@ foreach_build_list_cb (gchar *key, Location *value, GList **node)
{
if (!location_is_deleted (value))
*node = g_list_prepend (*node, value);
- else
- bonobo_object_unref (BONOBO_OBJECT (value));
return 0;
}
@@ -750,6 +748,7 @@ load_all_locations (Archive *archive)
DIR *archive_dir;
struct dirent entry, *entryp;
gchar *filename;
+ Location *location;
archive_dir = opendir (archive->prefix);
@@ -772,8 +771,11 @@ load_all_locations (Archive *archive)
{
filename = g_concat_dir_and_file (archive->prefix,
entry.d_name);
- if (g_file_test (filename, G_FILE_TEST_ISDIR))
- archive_get_location (archive, entry.d_name);
+ if (g_file_test (filename, G_FILE_TEST_ISDIR)) {
+ location = archive_get_location (archive, entry.d_name);
+ if (location_is_deleted (location))
+ bonobo_object_unref (BONOBO_OBJECT (location));
+ }
}
}
}
diff --git a/capplets/background/Makefile.am b/capplets/background/Makefile.am
index c978c7b6e..11de9b297 100644
--- a/capplets/background/Makefile.am
+++ b/capplets/background/Makefile.am
@@ -63,4 +63,3 @@ Glade_DATA = $(cappletname)-properties.glade
icons_DATA = $(cappletname)-capplet.png
desktop = $(cappletname).desktop
all-local: $(desktop) $(oaffile)
-
diff --git a/capplets/rollback/Makefile.am b/capplets/rollback/Makefile.am
index d01672628..8f24f0e6b 100644
--- a/capplets/rollback/Makefile.am
+++ b/capplets/rollback/Makefile.am
@@ -1,35 +1,32 @@
-Applicationsdir = $(datadir)/control-center/capplets
-Applications_in_files = rollback.desktop.in
-Applications_DATA = $(Applications_in_files:.desktop.in=.desktop)
-@XML_I18N_MERGE_DESKTOP_RULE@
+cappletname = rollback
+cappletgroup =
-pApplicationsdir = $(datadir)/gnome/apps/Settings/Desktop
-pApplications_DATA = $(Applications_DATA)
+bin_PROGRAMS = rollback-capplet
-Gladedir = $(datadir)/control-center-data
-Glade_DATA = \
- rollback.glade
+rollback_capplet_LDADD = $(GNOMECC_CAPPLETS_LIBS)
-EXTRA_DIST = $(Applications_DATA) $(Glade_DATA)
+rollback_capplet_SOURCES = \
+ rollback-capplet-widget.c rollback-capplet-widget.h \
+ main.c
-INCLUDES = \
- -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
- -DGNOME_ICONDIR=\""${prefix}/share/pixmaps"\" \
- -DG_LOG_DOMAIN=\"background-properties\" \
- -DGLADE_DATADIR=\""$(Gladedir)"\" \
- @ROLLBACK_CAPPLET_CFLAGS@ \
- -I$(top_srcdir)/ \
- -I$(top_srcdir)/intl \
- -I$(top_srcdir)/archiver
+####@###GNOMECC_CAPPLETS_DESKTOP_IN_RULE@
+$(desktop).in: %.desktop.in: %.desktop.in.in
+ sed -e "s#@DESKTOP_EXEC_LINE@#$(DESKTOP_EXEC_LINE)#" -e "s#Icon=.*#Icon=$(GNOMECC_ICONS_DIR)/${cappletname}-capplet.png#" < $< > ${cappletname}.desktop.in
-bin_PROGRAMS = rollback-capplet
+install-data-local:
+ $(mkinstalldirs) $(DESTDIR)$(datadir)/control-center/capplets/$(cappletgroup)
+ $(INSTALL_DATA) $(desktop) $(DESTDIR)$(datadir)/control-center/capplets/$(cappletgroup)$(desktop)
-rollback_capplet_SOURCES = \
- config-manager-dialog.c config-manager-dialog.h \
- rollback-widget.c rollback-widget.h \
- rollback-control.c rollback-control.h \
- main.c
+install-data-am: install-data-local
+####@###GNOMECC_CAPPLETS_DESKTOP_IN_RULE@
-rollback_capplet_LDADD = \
- $(top_builddir)/archiver/libconfig_archiver.la \
- @ROLLBACK_CAPPLET_LIBS@
+INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS)
+CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES)
+EXTRA_DIST = $(GNOMECC_CAPPLETS_EXTRA_DIST) $(defaults_DATA)
+iconsdir = $(GNOMECC_ICONS_DIR)
+Gladedir = $(GNOMECC_GLADE_DIR)
+pixmapdir = $(GNOMECC_PIXMAPS_DIR)
+Glade_DATA = $(cappletname).glade
+icons_DATA = $(cappletname)-capplet.png
+desktop = $(cappletname).desktop
+all-local: $(desktop)
diff --git a/capplets/rollback/main.c b/capplets/rollback/main.c
index addd13c08..a455ceaff 100644
--- a/capplets/rollback/main.c
+++ b/capplets/rollback/main.c
@@ -1,6 +1,6 @@
/* -*- mode: c; style: linux -*- */
-/* config-manager.c
+/* main.c
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Written by Bradford Hovinen <hovinen@ximian.com>
@@ -28,11 +28,14 @@
#include <gnome.h>
#include <glade/glade.h>
-#include "config-manager-dialog.h"
+#include "rollback-capplet-dialog.h"
static gboolean is_global;
+static gchar *capplet_name;
static struct poptOption rollback_options[] = {
+ {"capplet", 'c', POPT_ARG_STRING, &capplet_name, 0,
+ N_("Rollback the capplet given")},
{"global", 'g', POPT_ARG_NONE, &is_global, 0,
N_("Operate on global backends")},
{NULL, '\0', 0, NULL, 0}
@@ -52,14 +55,18 @@ main (int argc, char **argv)
gnome_init ("config-manager", VERSION, argc, argv);
glade_gnome_init ();
- dialog = config_manager_dialog_new
- (is_global ? CM_DIALOG_GLOBAL : CM_DIALOG_USER);
- gtk_widget_show (dialog);
+ orb = oaf_init (argc, argv);
+ if (bonobo_init (orb, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE)
+ g_error ("Cannot initialize bonobo");
- gtk_signal_connect (GTK_OBJECT (dialog), "destroy",
- gtk_main_quit, NULL);
+ if (capplet_name != NULL) {
+ dialog = rollback_capplet_dialog_new (capplet_name);
- gtk_main ();
+ gtk_signal_connect (GTK_OBJECT (dialog), "destroy",
+ gtk_main_quit, NULL);
+ }
+
+ bonobo_main ();
return 0;
}
diff --git a/capplets/rollback/rollback.glade b/capplets/rollback/rollback.glade
index cd1bedbd3..1b5d14969 100644
--- a/capplets/rollback/rollback.glade
+++ b/capplets/rollback/rollback.glade
@@ -139,6 +139,7 @@
<name>button4</name>
<can_focus>True</can_focus>
<label>View Logs...</label>
+ <relief>GTK_RELIEF_NORMAL</relief>
<child>
<left_attach>0</left_attach>
<right_attach>1</right_attach>
@@ -160,6 +161,7 @@
<name>button5</name>
<can_focus>True</can_focus>
<label>Advanced...</label>
+ <relief>GTK_RELIEF_NORMAL</relief>
<child>
<left_attach>1</left_attach>
<right_attach>2</right_attach>
@@ -356,6 +358,7 @@
<last_modification_time>Wed, 20 Dec 2000 23:51:41 GMT</last_modification_time>
</signal>
<label>Create...</label>
+ <relief>GTK_RELIEF_NORMAL</relief>
<child>
<padding>0</padding>
<expand>False</expand>
@@ -373,6 +376,7 @@
<last_modification_time>Wed, 20 Dec 2000 23:51:56 GMT</last_modification_time>
</signal>
<label>Destroy...</label>
+ <relief>GTK_RELIEF_NORMAL</relief>
<child>
<padding>0</padding>
<expand>False</expand>
@@ -390,6 +394,7 @@
<last_modification_time>Wed, 20 Dec 2000 23:52:13 GMT</last_modification_time>
</signal>
<label>Rename...</label>
+ <relief>GTK_RELIEF_NORMAL</relief>
<child>
<padding>0</padding>
<expand>False</expand>
@@ -417,6 +422,7 @@
<last_modification_time>Wed, 20 Dec 2000 23:52:33 GMT</last_modification_time>
</signal>
<label>Change to this Location</label>
+ <relief>GTK_RELIEF_NORMAL</relief>
<child>
<padding>0</padding>
<expand>False</expand>
@@ -434,6 +440,7 @@
<last_modification_time>Wed, 20 Dec 2000 23:52:51 GMT</last_modification_time>
</signal>
<label>Edit this Location</label>
+ <relief>GTK_RELIEF_NORMAL</relief>
<child>
<padding>0</padding>
<expand>False</expand>
@@ -480,7 +487,7 @@
<widget>
<class>GnomeDialog</class>
- <name>rollback_dialog</name>
+ <name>rollback_dialog_backup</name>
<title>Restore old configuration</title>
<type>GTK_WINDOW_TOPLEVEL</type>
<position>GTK_WIN_POS_NONE</position>
@@ -724,40 +731,138 @@
</child>
</widget>
</widget>
+ </widget>
+ </widget>
+</widget>
+
+<widget>
+ <class>GnomeDialog</class>
+ <name>rollback_dialog_win</name>
+ <type>GTK_WINDOW_TOPLEVEL</type>
+ <position>GTK_WIN_POS_NONE</position>
+ <modal>False</modal>
+ <allow_shrink>False</allow_shrink>
+ <allow_grow>False</allow_grow>
+ <auto_shrink>False</auto_shrink>
+ <auto_close>False</auto_close>
+ <hide_on_close>False</hide_on_close>
+
+ <widget>
+ <class>GtkVBox</class>
+ <child_name>GnomeDialog:vbox</child_name>
+ <name>dialog-vbox4</name>
+ <homogeneous>False</homogeneous>
+ <spacing>8</spacing>
+ <child>
+ <padding>4</padding>
+ <expand>True</expand>
+ <fill>True</fill>
+ </child>
+
+ <widget>
+ <class>GtkHButtonBox</class>
+ <child_name>GnomeDialog:action_area</child_name>
+ <name>dialog-action_area4</name>
+ <layout_style>GTK_BUTTONBOX_END</layout_style>
+ <spacing>8</spacing>
+ <child_min_width>85</child_min_width>
+ <child_min_height>27</child_min_height>
+ <child_ipad_x>7</child_ipad_x>
+ <child_ipad_y>0</child_ipad_y>
+ <child>
+ <padding>0</padding>
+ <expand>False</expand>
+ <fill>True</fill>
+ <pack>GTK_PACK_END</pack>
+ </child>
<widget>
- <class>GtkHBox</class>
- <name>hbox6</name>
- <homogeneous>False</homogeneous>
- <spacing>5</spacing>
+ <class>GtkButton</class>
+ <name>button17</name>
+ <can_default>True</can_default>
+ <can_focus>True</can_focus>
+ <stock_button>GNOME_STOCK_BUTTON_OK</stock_button>
+ </widget>
+
+ <widget>
+ <class>GtkButton</class>
+ <name>button18</name>
+ <can_default>True</can_default>
+ <can_focus>True</can_focus>
+ <stock_button>GNOME_STOCK_BUTTON_APPLY</stock_button>
+ </widget>
+
+ <widget>
+ <class>GtkButton</class>
+ <name>button19</name>
+ <can_default>True</can_default>
+ <can_focus>True</can_focus>
+ <stock_button>GNOME_STOCK_BUTTON_CANCEL</stock_button>
+ </widget>
+ </widget>
+
+ <widget>
+ <class>GtkVBox</class>
+ <name>rollback_dialog</name>
+ <homogeneous>False</homogeneous>
+ <spacing>5</spacing>
+ <child>
+ <padding>0</padding>
+ <expand>True</expand>
+ <fill>True</fill>
+ </child>
+
+ <widget>
+ <class>GtkLabel</class>
+ <name>rollback_level_label</name>
+ <label>Current time</label>
+ <justify>GTK_JUSTIFY_LEFT</justify>
+ <wrap>False</wrap>
+ <xalign>0</xalign>
+ <yalign>0.5</yalign>
+ <xpad>0</xpad>
+ <ypad>0</ypad>
+ <child>
+ <padding>0</padding>
+ <expand>False</expand>
+ <fill>False</fill>
+ </child>
+ </widget>
+
+ <widget>
+ <class>GtkHScale</class>
+ <name>rollback_scale</name>
+ <can_focus>True</can_focus>
+ <draw_value>False</draw_value>
+ <value_pos>GTK_POS_TOP</value_pos>
+ <digits>0</digits>
+ <policy>GTK_UPDATE_DISCONTINUOUS</policy>
+ <value>0</value>
+ <lower>0</lower>
+ <upper>0</upper>
+ <step>0</step>
+ <page>0</page>
+ <page_size>0</page_size>
<child>
<padding>0</padding>
<expand>True</expand>
<fill>True</fill>
</child>
+ </widget>
- <widget>
- <class>GtkButton</class>
- <name>view_logs_button</name>
- <can_focus>True</can_focus>
- <label>View Logs...</label>
- <child>
- <padding>0</padding>
- <expand>True</expand>
- <fill>True</fill>
- </child>
- </widget>
+ <widget>
+ <class>GtkFrame</class>
+ <name>control_socket</name>
+ <label_xalign>0</label_xalign>
+ <shadow_type>GTK_SHADOW_ETCHED_IN</shadow_type>
+ <child>
+ <padding>0</padding>
+ <expand>True</expand>
+ <fill>True</fill>
+ </child>
<widget>
- <class>GtkButton</class>
- <name>advanced_button</name>
- <can_focus>True</can_focus>
- <label>Advanced...</label>
- <child>
- <padding>0</padding>
- <expand>True</expand>
- <fill>True</fill>
- </child>
+ <class>Placeholder</class>
</widget>
</widget>
</widget>
diff --git a/configure.in b/configure.in
index 91a135f33..9dac29a14 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
AC_INIT(control-center)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(control-center, 1.5.6)
+AM_INIT_AUTOMAKE(control-center, 1.5.7)
AM_MAINTAINER_MODE
diff --git a/po/az.po b/po/az.po
index eac11f7af..a3df9b8ad 100644
--- a/po/az.po
+++ b/po/az.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center 1.5.5\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-08-18 16:29GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
diff --git a/po/ca.po b/po/ca.po
index 556084727..f26f2d146 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center 1.5.5\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-08-10 21:50+0200\n"
"Last-Translator: Softcatalà <tradgnome@softcatala.org>\n"
"Language-Team: Catalan <linux@softcatala.org>\n"
diff --git a/po/da.po b/po/da.po
index d8448e559..0096354fe 100644
--- a/po/da.po
+++ b/po/da.po
@@ -15,7 +15,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-30 18:37+02:00\n"
"Last-Translator: Ole Laursen <olau@hardworking.dk>\n"
"Language-Team: danish <dansk@klid.dk>\n"
diff --git a/po/de.po b/po/de.po
index 291257816..b12d7d4de 100644
--- a/po/de.po
+++ b/po/de.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.3.2\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-10 16:42+0200\n"
"Last-Translator: Kai Lahmann <kl@linuxfaqs.de>\n"
"Language-Team: German <gnome-de@gnome.org>\n"
diff --git a/po/el.po b/po/el.po
index 99619e7a3..6eae0eaec 100644
--- a/po/el.po
+++ b/po/el.po
@@ -17,7 +17,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center 1.5.5\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-02-18 23:12:25+0900\n"
"Last-Translator: Simos Xenitellis <simos@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
diff --git a/po/es.po b/po/es.po
index 5f5f8cbb5..664cce1b0 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.3.10\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-28 13:20+0200\n"
"Last-Translator: Carlos Perelló Marín <carlos@gnome-db.org>\n"
"Language-Team: Spanish\n"
diff --git a/po/fi.po b/po/fi.po
index db5071d06..d73c9db00 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -17,7 +17,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center 1.4.0\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-25 15:02+0300\n"
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
"Language-Team: Finnish <fi@li.org>\n"
diff --git a/po/fr.po b/po/fr.po
index db19bf74e..30443db87 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.5.4\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-08-07 09:39+0200\n"
"Last-Translator: Christophe Merlet (RedFox) <christophe@merlet.net>\n"
"Language-Team: Gnome French Team <gnomefr@gnomefr.traduc.org>\n"
diff --git a/po/ga.po b/po/ga.po
index 3e03b2421..345599980 100644
--- a/po/ga.po
+++ b/po/ga.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center CVS\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2000-03-11 01:02+0000\n"
"Last-Translator:Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Alastair McKinstry <mckinstry@computer.org>\n"
diff --git a/po/hr.po b/po/hr.po
index 2cf574d39..3bfdd0f03 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center 1.5.5\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: Mon Dec 20 1999 21:34:11+0200\n"
"Last-Translator: Vladimir Vuksan <vuksan@veus.hr>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
diff --git a/po/ja.po b/po/ja.po
index 599d86565..b248f0736 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center CVS-20010216\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-20 13:55+0900\n"
"Last-Translator: Akira TAGOH <tagoh@gnome.gr.jp>\n"
"Language-Team: Japanese <translation@gnome.gr.jp>\n"
diff --git a/po/nn.po b/po/nn.po
index 43ffdee2f..de7bdf3de 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center-1.4.x\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-06-25 18:55+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian (Nynorsk)\n"
diff --git a/po/no.po b/po/no.po
index 69c8a9756..bc8c98d29 100644
--- a/po/no.po
+++ b/po/no.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.3.0\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-25 21:13+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
diff --git a/po/pl.po b/po/pl.po
index 699637fa9..c339bc69e 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-08-08 17:33+0200\n"
"Last-Translator: GNOME PL Team <translators@gnome.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 6c86759c2..0c16ba19b 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.5.6\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-08-22 18:01-03:00\n"
"Last-Translator: Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>\n"
"Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
diff --git a/po/ru.po b/po/ru.po
index 645143676..f36f0148d 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-08-10 20:25+0400\n"
"Last-Translator: Valek Filippov <frob@df.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
diff --git a/po/sk.po b/po/sk.po
index 7a3c554f9..e6b69da32 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.5.1\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-27 10:16CET\n"
"Last-Translator: Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
diff --git a/po/sl.po b/po/sl.po
index fbb66e026..c788b2749 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.2.0\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2000-06-13 05:46+0200\n"
"Last-Translator: Andraz Tori <andraz.tori1@guest.arnes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
diff --git a/po/sv.po b/po/sv.po
index b30860c51..3973435bc 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-07-26 20:11+0200\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
diff --git a/po/tr.po b/po/tr.po
index 10b963528..fe2a4ae4b 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center 1.5.0\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-03-14 18:56+0100\n"
"Last-Translator: Görkem Çetin <gorkem@gelecek.com.tr>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
diff --git a/po/uk.po b/po/uk.po
index 5e37ce333..6d4ae11c1 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.0.6\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 1999-10-27 09:02+0200\n"
"Last-Translator: Yuri Syrota <rasta@renome.rovno.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
diff --git a/po/wa.po b/po/wa.po
index e1f773356..f737a5c5b 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center 1.5.5\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 1999-03-18 23:11+0100\n"
"Last-Translator: Pablo Saratxaga <srtxg@chanae.alphanet.ch>\n"
"Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index e72317d58..e4ce31d0d 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.5.5\n"
-"POT-Creation-Date: 2001-08-23 16:09-0400\n"
+"POT-Creation-Date: 2001-08-29 12:59-0400\n"
"PO-Revision-Date: 2001-08-22 21:05+0800\n"
"Last-Translator: Abel Cheung <maddog@linux.org.hk>\n"
"Language-Team: Chinese\n"