summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.cvsignore2
-rw-r--r--ChangeLog5
-rw-r--r--src/totem.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/.cvsignore b/.cvsignore
index 5608828ed..b4c2177c2 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -10,7 +10,7 @@ config.status
config.log
config.h.in
config.h
-autom4te.cache
+autom4te*.cache
aclocal.m4
Makefile.in
Makefile
diff --git a/ChangeLog b/ChangeLog
index 6b6640fc3..4f8d5ed29 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-07 Christian Neumair <chris@gnome-de.org>
+
+ * .cvsignore: Updated.
+ * src/totem.c: Marked a missing string for translation.
+
2002-12-06 Bastien Nocera <hadess@hadess.net>
* src/gtk-playlist.c: (gtk_playlist_add_mrl):
diff --git a/src/totem.c b/src/totem.c
index 76c981dff..241aeeb28 100644
--- a/src/totem.c
+++ b/src/totem.c
@@ -795,7 +795,7 @@ update_current_time (Totem *totem)
time_text = time_to_string (time/1000);
/* Make the new label */
- label_text = g_strdup_printf("Time: %s ", time_text);
+ label_text = g_strdup_printf(_("Time: %s "), time_text);
/* Update the widgets */
widget = glade_xml_get_widget (totem->xml, "label9");