[Goodies-commits] r1928 - in xfce4-xmms-plugin/trunk: . panel-plugin po

Kemal Eroglu ilgar at xfce.org
Sun Aug 27 17:37:42 CEST 2006


Author: ilgar
Date: 2006-08-27 15:37:33 +0000 (Sun, 27 Aug 2006)
New Revision: 1928

Added:
   xfce4-xmms-plugin/trunk/po/tr.po
Modified:
   xfce4-xmms-plugin/trunk/ChangeLog
   xfce4-xmms-plugin/trunk/configure.in.in
   xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.c
   xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.h
   xfce4-xmms-plugin/trunk/po/ChangeLog
   xfce4-xmms-plugin/trunk/po/LINGUAS
   xfce4-xmms-plugin/trunk/po/de.po
   xfce4-xmms-plugin/trunk/po/eu.po
   xfce4-xmms-plugin/trunk/po/fr.po
   xfce4-xmms-plugin/trunk/po/hu.po
   xfce4-xmms-plugin/trunk/po/ja.po
   xfce4-xmms-plugin/trunk/po/ko.po
   xfce4-xmms-plugin/trunk/po/lt.po
   xfce4-xmms-plugin/trunk/po/pl.po
   xfce4-xmms-plugin/trunk/po/vi.po
   xfce4-xmms-plugin/trunk/po/xfce4-xmms-plugin.pot
Log:
Version 0.4.1. Added Turkish translations. Minor bugfixes, see Changelog.

Modified: xfce4-xmms-plugin/trunk/ChangeLog
===================================================================
--- xfce4-xmms-plugin/trunk/ChangeLog	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/ChangeLog	2006-08-27 15:37:33 UTC (rev 1928)
@@ -1,3 +1,12 @@
+2006-08-27 Kemal Ilgar Eroglu <kieroglu at math.washington.edu>
+
+	* Version bumped to 0.4.1 .
+	* Little mod to configure.in.in. for gettext.
+	* Added Turkish translations.
+	* Fixed some (hopefully all) Gtk warnings.
+	* Fixed a bug about visibility settings 
+	  not being loaded correctly.
+
 2006-08-13 Jannis Pohlmann
 
 	* 0.4.0 released!

Modified: xfce4-xmms-plugin/trunk/configure.in.in
===================================================================
--- xfce4-xmms-plugin/trunk/configure.in.in	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/configure.in.in	2006-08-27 15:37:33 UTC (rev 1928)
@@ -8,7 +8,7 @@
 dnl version info
 m4_define([xfce4_xmms_version_major], [0])
 m4_define([xfce4_xmms_version_minor], [4])
-m4_define([xfce4_xmms_version_micro], [0])
+m4_define([xfce4_xmms_version_micro], [1])
 m4_define([xfce4_xmms_version_build], [@REVISION@])
 m4_define([xfce4_xmms_version_tag], [svn])
 m4_define([xfce4_xmms_version], [xfce4_xmms_version_major().xfce4_xmms_version_minor().xfce4_xmms_version_micro()ifelse(xfce4_xmms_version_tag(), [svn], [xfce4_xmms_version_tag()-xfce4_xmms_version_build()], [xfce4_xmms_version_tag()])])
@@ -47,6 +47,13 @@
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.3.0])
 XDT_CHECK_PACKAGE([PANGO], [pango], [1.8.0])
 
+dnl Set PACKAGE_LOCALE_DIR in config.h.
+if test "x${prefix}" = "xNONE"; then
+  AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${ac_default_prefix}/${DATADIRNAME}/locale", [Package local directory])
+else
+  AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${prefix}/${DATADIRNAME}/locale", [Package local directory])
+fi
+
 dnl Check for Gtk 2.8. If yes, add Cairo flags
 dnl CAIRO_CF=`pkg-config --cflags cairo`
 dnl CAIRO_L=`pkg-config --libs cairo`

Modified: xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.c
===================================================================
--- xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.c	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.c	2006-08-27 15:37:33 UTC (rev 1928)
@@ -154,12 +154,19 @@
   gint vl, vr;
   plugin_data *pd = (plugin_data*) data;
 
+  if (!xmms_remote_is_running(pd->xmms_session))
+  	return;
+
   xmms_remote_get_volume(pd->xmms_session, &vl, &vr);
+  /*g_fprintf(stderr,"\n\n\n********** vl=%d   vr=%d",vl, vr);*/
   if(event->direction == GDK_SCROLL_UP) xmms_remote_set_volume(pd->xmms_session, vl+8, vr+8);
   else                                  xmms_remote_set_volume(pd->xmms_session, vl-8, vr-8);
   
   xmms_remote_get_volume(pd->xmms_session, &vl, &vr);
-  gtk_progress_bar_set_fraction     (GTK_PROGRESS_BAR(pd->vol_pbar), ((double)(MAX(vl,vr)))/100);
+
+  /* XMMS may return -1 (Alsa/OSS output issue) */
+  if (vl >= 0)
+  	gtk_progress_bar_set_fraction     (GTK_PROGRESS_BAR(pd->vol_pbar), ((double)(MAX(vl,vr)))/100);
 }
 
 /**********************************************/
@@ -232,7 +239,7 @@
 gboolean pbar_label_update(gpointer data) {
   plugin_data    *pd = (plugin_data*) data;
   GtkAdjustment  *adj;
-  gint           sp, len, time = 1, pl_pos = -1, play_time = 0, vl, vr;
+  gint           sp, len, time = 1, pl_pos = -1, play_time=0, vl, vr;
   gchar          *timestr;
   PangoAttribute *attr;
   gboolean       running, playing;
@@ -254,14 +261,8 @@
 
   /* update progress bar */
   if (playing) play_time = xmms_remote_get_output_time(pd->xmms_session) / 1000;
-  if (pd->play_time != play_time) {
-    gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(pd->pbar), (gdouble) play_time / time);
-    // timestr = g_strdup_printf("%d:%02d", play_time/60, play_time%60);
-    // gtk_progress_bar_set_text(GTK_PROGRESS_BAR(pd->pbar), timestr);
-    // g_free(timestr);
-    pd->play_time = play_time;
-  }
-
+  gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(pd->pbar), (gdouble) play_time / time);
+  
   /* scroll song title */
   if ((pd->show_scrolledtitle) && (pd->scroll_step > 0)) {
     adj = gtk_viewport_get_hadjustment(GTK_VIEWPORT(pd->viewport));
@@ -273,10 +274,14 @@
     pd->title_scroll_position += pd->scroll_step;
   }
   
+
   if((running) && (pd->vol_pbar_visible)){
-    xmms_remote_get_volume(pd->xmms_session, &vl, &vr);
-    gtk_progress_bar_set_fraction     (GTK_PROGRESS_BAR(pd->vol_pbar), ((double)(MAX(vl,vr)))/100);    
+    xmms_remote_get_volume(pd->xmms_session, &vl, &vr);    
+    if ( vl >= 0 ) /* XMMS may return -1 (Alsa/OSS output issue) */
+    	gtk_progress_bar_set_fraction   (GTK_PROGRESS_BAR(pd->vol_pbar), 
+    					((double)(MAX	(vl,vr)))/100);    
   }
+
   
   /* set up new timer and destroy old if new scroll speed has been set */
   if (pd->timer_reset) {
@@ -377,9 +382,39 @@
   else
     gtk_widget_set_size_request
     		(GTK_WIDGET (pd->base),80,xfce_panel_plugin_get_size(pd->base));  
-     
+ 
 }
 
+/*****************************/
+/* apply visibility settings */
+/*****************************/
+void apply_visibility_settings(plugin_data *pd) {
+
+  PangoAttrSize *attr = (PangoAttrSize*) pd->labelattr;
+    
+  attr->size = pd->titletextsize * PANGO_SCALE;
+  gtk_label_set_attributes(GTK_LABEL(pd->label), pd->labelattrlist);
+  
+  if(!pd->show_scrolledtitle)
+  gtk_widget_hide_all (pd->viewport);
+  /* show/hide the event box parent of the scrolled title */
+  if (pd->show_scrolledtitle)
+ 	gtk_widget_show_all(gtk_widget_get_parent(pd->label));
+  else                          
+ 	gtk_widget_hide_all(gtk_widget_get_parent(pd->label));
+ 	
+ 	
+  if(pd->pbar_visible)
+ 	gtk_widget_show_all  (pd->pbar);
+  else
+  	gtk_widget_hide_all  (pd->pbar);   
+  	
+  if(pd->vol_pbar_visible)
+  	gtk_widget_show_all  (pd->vol_pbar);
+  else
+  	gtk_widget_hide_all  (pd->vol_pbar); 								 	
+}
+
 /**************************/
 /* read plugin parameters */
 /**************************/
@@ -391,6 +426,7 @@
   
   if ((file = xfce_panel_plugin_lookup_rc_file (pd->base)) != NULL)
   {
+  
       rc = xfce_rc_simple_open (file, TRUE);
       g_free (file);
 
@@ -443,7 +479,7 @@
 	 		
 	 xfce_rc_close(rc);
 	}	
-           
+    
   }
 
 }
@@ -468,7 +504,6 @@
   if (!rc)
     return;
     
-                    
   /* save title font size */
   xfce_rc_write_int_entry (rc,"textsize",pd->titletextsize);
 
@@ -507,36 +542,7 @@
   xfce_rc_close(rc);   
 }
 
-/*****************************/
-/* apply visibility settings */
-/*****************************/
-void apply_visibility_settings(plugin_data *pd) {
 
-  PangoAttrSize *attr = (PangoAttrSize*) pd->labelattr;
-    
-  attr->size = pd->titletextsize * PANGO_SCALE;
-  gtk_label_set_attributes(GTK_LABEL(pd->label), pd->labelattrlist);
-  
-  if(!pd->show_scrolledtitle)
-  gtk_widget_hide_all (pd->viewport);
-  /* show/hide the event box parent of the scrolled title */
-  if (pd->show_scrolledtitle)
- 	gtk_widget_show_all(gtk_widget_get_parent(pd->label));
-  else                          
- 	gtk_widget_hide_all(gtk_widget_get_parent(pd->label));
- 	
- 	
-  if(pd->pbar_visible)
- 	gtk_widget_show_all  (pd->pbar);
-  else
-  	gtk_widget_hide_all  (pd->pbar);   
-  	
-  if(pd->vol_pbar_visible)
-  	gtk_widget_show_all  (pd->vol_pbar);
-  else
-  	gtk_widget_hide_all  (pd->vol_pbar); 								 	
-}
-
 /************************************/
 /* callback to change the font size */
 /************************************/
@@ -549,6 +555,8 @@
   if (pd->titletextsize > MAX_TITLE_SIZE) pd->titletextsize = MAX_TITLE_SIZE;
   attr->size = pd->titletextsize * PANGO_SCALE;
   gtk_label_set_attributes(GTK_LABEL(pd->label), pd->labelattrlist);
+  gtk_widget_set_size_request(GTK_WIDGET(pd->viewport),0,pd->titletextsize);
+
 }
 
 
@@ -775,10 +783,10 @@
   gtk_box_pack_start        (GTK_BOX(vbox), table, DOEXPAND, DOFILL, PADDING);
 
   /* put labels into the left column of our table */
-  add_label(table, "Font Size",        0);
-  add_label(table, "Scroll Speed",     1);
-  add_label(table, "Scroll Stepwidth", 2);
-  add_label(table, "Scroll Delay",     3);
+  add_label(table, _("Font Size"),        0);
+  add_label(table, _("Scroll Speed"),     1);
+  add_label(table, _("Scroll Stepwidth"), 2);
+  add_label(table, _("Scroll Delay"),     3);
 
   /* put spin buttons into the right column */
   add_spin(table, MIN_TITLE_SIZE,   MAX_TITLE_SIZE,   pd->titletextsize, G_CALLBACK(set_font_size),    pd, 0);
@@ -790,18 +798,18 @@
   gtk_box_pack_start (GTK_BOX(vbox), gtk_hseparator_new(), DOEXPAND, DOFILL, PADDING);
 
   /* add check buttons for the scrolled title, progressbar and volume bar */
-  add_check(vbox, "Show scrolled song title", pd->show_scrolledtitle, G_CALLBACK(show_title), pd, NULL);
-  add_check(vbox, "Show track position", pd->pbar_visible, G_CALLBACK(pbar_visible_toggled), pd, NULL);
-  add_check(vbox, "Show volume level", pd->vol_pbar_visible, G_CALLBACK(vol_pbar_visible_toggled), pd, NULL);
+  add_check(vbox, _("Show scrolled song title"), pd->show_scrolledtitle, G_CALLBACK(show_title), pd, NULL);
+  add_check(vbox, _("Show track position"), pd->pbar_visible, G_CALLBACK(pbar_visible_toggled), pd, NULL);
+  add_check(vbox, _("Show volume level"), pd->vol_pbar_visible, G_CALLBACK(vol_pbar_visible_toggled), pd, NULL);
   /* add check button for simple title option */
-  add_check(vbox, "Simple song title format", pd->simple_title, G_CALLBACK(simple_title_toggled), pd, NULL);
+  add_check(vbox, _("Simple song title format"), pd->simple_title, G_CALLBACK(simple_title_toggled), pd, NULL);
   /* add check button for hor_vol_if_vertical option */
-  add_check(vbox, "Horizontal volume bar on vertical panels", 
+  add_check(vbox, _("Horizontal volume bar on vertical panels"), 
   pd->hor_vol_if_vertical, G_CALLBACK(hor_vol_toggled), pd, NULL);  
   /* add check button for "Use BMP" option */
-  add_check(vbox, "Use BMP (Beep Media Player)", pd->use_bmp, G_CALLBACK(use_bmp_toggled), pd, NULL);  
+  add_check(vbox, _("Use BMP (Beep Media Player)"), pd->use_bmp, G_CALLBACK(use_bmp_toggled), pd, NULL);  
   /* add check button for quit xmms option */
-  add_check(vbox, "Quit XMMS/BMP when plugin terminates", pd->quit_xmms, G_CALLBACK(quit_xmms_toggled), pd, NULL);
+  add_check(vbox, _("Quit XMMS/BMP when plugin terminates"), pd->quit_xmms, G_CALLBACK(quit_xmms_toggled), pd, NULL);
   
   gtk_widget_show_all(GTK_WIDGET(dlg));
   
@@ -819,6 +827,8 @@
   GtkRcStyle *rc;
   GdkColor color;
 
+  xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
+  
   pd = g_new(plugin_data, 1);
   
   /* These defaults will be overwritten by read config */
@@ -829,7 +839,6 @@
   pd->step_delay             = STEP_DELAY;
   pd->scroll_delay           = SCROLL_DELAY;
   pd->playlist_position      = -1;
-  pd->play_time              = -1;
   pd->xmmsvisible            = TRUE;
   pd->xmms_session           = 0;
   pd->timeout                = 0;
@@ -864,7 +873,8 @@
   
   g_signal_connect (plugin, "orientation-changed", 
                       G_CALLBACK (orient_change), pd);
-                      
+
+                        
   /* add scrolling callback for the plugin base widget */
   pd->base                     = plugin;
   gtk_widget_add_events(GTK_WIDGET(plugin), GDK_SCROLL_MASK);
@@ -887,7 +897,7 @@
   viewport                     = gtk_viewport_new(NULL, NULL);
   gtk_viewport_set_shadow_type   (GTK_VIEWPORT(viewport), GTK_SHADOW_NONE);
   gtk_container_add              (GTK_CONTAINER(viewport), eventbox);
-  gtk_widget_set_size_request    (viewport, 0, 0);
+  gtk_widget_set_size_request    (viewport, 0, pd->titletextsize+2);
   gtk_box_pack_start             (GTK_BOX(boxV), viewport, DOEXPAND, DOFILL, PADDING);
 
   /* the progress bar */
@@ -897,7 +907,7 @@
   gtk_widget_set_events          (pbar, GDK_BUTTON_PRESS_MASK);
   g_signal_connect               (G_OBJECT(pbar), "button_press_event",
                                   G_CALLBACK(pbar_click), pd);
-  gtk_box_pack_start             (GTK_BOX(boxV), pbar, DOEXPAND, DOFILL, PADDING);
+  gtk_box_pack_start             (GTK_BOX(boxV), pbar, TRUE, FALSE, PADDING);
        
   pd->boxMain  = boxMain;
   pd->boxV     = boxV;
@@ -949,10 +959,10 @@
   gtk_container_add              (GTK_CONTAINER(plugin), boxMain);
 
   xmms_plugin_read_config(pd);
-  apply_visibility_settings(pd);
   adjust_vol_pbar(pd);
   gtk_widget_show_all(boxMain);
-
+  apply_visibility_settings(pd);
+  
   pd->timeout                  = g_timeout_add(1000 / pd->scroll_speed, 						pbar_label_update, pd);
 
   return(TRUE);

Modified: xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.h
===================================================================
--- xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.h	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/panel-plugin/xmms_plugin.h	2006-08-27 15:37:33 UTC (rev 1928)
@@ -40,7 +40,7 @@
 
 #define MAX_SCROLL_SPEED 20             /* limits and default for scroll steps per second */
 #define MIN_SCROLL_SPEED 1
-#define SCROLL_SPEED     10
+#define SCROLL_SPEED     5
 
 #define MAX_SCROLL_DELAY 10             /* limits and default for delay in seconds before */
 #define MIN_SCROLL_DELAY 0              /* scrolling starts                               */
@@ -66,7 +66,7 @@
   PangoAttribute *labelattr;
   PangoAttrList  *labelattrlist;
   gint           titletextsize, title_scroll_position, playlist_position;
-  gint           scroll_step, scroll_speed, scroll_delay, step_delay, play_time;
+  gint           scroll_step, scroll_speed, scroll_delay, step_delay;
   gint           xmms_session;
   guint          timeout;
   gboolean       xmmsvisible, show_mw, show_pl, show_eq, timer_reset,

Modified: xfce4-xmms-plugin/trunk/po/ChangeLog
===================================================================
--- xfce4-xmms-plugin/trunk/po/ChangeLog	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/ChangeLog	2006-08-27 15:37:33 UTC (rev 1928)
@@ -1,3 +1,8 @@
+2006-08-27 Kemal Ilgar Eroglu <kieroglu at math.washington.edu>
+
+	* Made some more strings translatable.
+	* tr.po: Added Turkish translations
+
 2006-08-27  Jean-François Wauthy <pollux at xfce.org>
 
 	* cs.po: Add Czech translations

Modified: xfce4-xmms-plugin/trunk/po/LINGUAS
===================================================================
--- xfce4-xmms-plugin/trunk/po/LINGUAS	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/LINGUAS	2006-08-27 15:37:33 UTC (rev 1928)
@@ -1 +1 @@
-cs de eu fr hu ja ko lt pl vi
+cs de eu fr hu ja ko lt pl tr vi

Modified: xfce4-xmms-plugin/trunk/po/de.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/de.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/de.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-07-25 11:40+0100\n"
 "Last-Translator: Enrico Troeger <enrico.troeger at uvena.de>\n"
 "Language-Team: German <de at li.org>\n"
@@ -17,14 +17,64 @@
 "X-Poedit-Language: German\n"
 "X-Poedit-Country: GERMANY\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr "Einstellungen"
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Xfce4 XMMS Plugin Optionen"
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr "XMMS Plugin für Xfce 4.4"

Modified: xfce4-xmms-plugin/trunk/po/eu.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/eu.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/eu.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-02-13 18:58+0100\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: Librezale <librezale at librezale.org>\n"
@@ -16,14 +16,64 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Pootle 0.6.3.20060126\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr "Propietateak"
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Xfce4 XMMS Plugin Aukerak"
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr "XMMS plugina Xfce 4.4 panelerako"

Modified: xfce4-xmms-plugin/trunk/po/fr.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/fr.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/fr.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-07-28 19:48+0100\n"
 "Last-Translator: Maximilian Schleiss <maxschleiss at bluewin.ch>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -15,14 +15,64 @@
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr "Propriétés"
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Options du greffon XMMS pour Xfce4"
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr "Greffon pour le panneau de l'environnement de bureau Xfce4"

Modified: xfce4-xmms-plugin/trunk/po/hu.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/hu.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/hu.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-07-25 11:15+0100\n"
 "Last-Translator: SZERVÑC Attila <sas at 321.hu>\n"
 "Language-Team: hu\n"
@@ -12,14 +12,64 @@
 "X-Poedit-Language: Hungarian\n"
 "X-Poedit-Country: HUNGARY\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr "Tulajdonságok"
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Xfce4 XMMS beillesztés beállítások"
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr "XMMS beillesztés az Xfce 4.4 panelhez"

Modified: xfce4-xmms-plugin/trunk/po/ja.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/ja.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/ja.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-01-05 00:14+0900\n"
 "Last-Translator: Daichi Kawahata <daichi at xfce.org>\n"
 "Language-Team: Japanese <translation-team-ja at lists.sourceforge.net>\n"
@@ -15,14 +15,64 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr "プロパティ"
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Xfce4 XMMS プラグインオプション"
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr "このプラグインから XMMS を操作します。"

Modified: xfce4-xmms-plugin/trunk/po/ko.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/ko.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/ko.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2005-01-19 17:38+0900\n"
 "Last-Translator: ByungHyun Choi <byunghyun.choi at gmail.com>\n"
 "Language-Team: Korean <xfce4-users-kr-i18n at lists.sourceforge.net>\n"
@@ -15,14 +15,64 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr ""
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr ""
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr ""

Modified: xfce4-xmms-plugin/trunk/po/lt.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/lt.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/lt.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-01-05 00:16+0900\n"
 "Last-Translator: Rimas Kudelis <rq at akl.lt>\n"
 "Language-Team: Lithuanian <komp_lt at konferencijos.lt>\n"
@@ -15,14 +15,64 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr ""
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr ""
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr ""

Modified: xfce4-xmms-plugin/trunk/po/pl.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/pl.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/pl.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-04-08 13:26+0900\n"
 "Last-Translator: Piotr Makiński <admin at rk.edu.pl>\n"
 "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
@@ -15,14 +15,64 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr "Właściwości"
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Opcje wtyczki Xfce4 XMMS"
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr "Wtyczka XMMS dla Xfce 4.4"

Added: xfce4-xmms-plugin/trunk/po/tr.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/tr.po	                        (rev 0)
+++ xfce4-xmms-plugin/trunk/po/tr.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -0,0 +1,82 @@
+# Turkish translations for the xfce4-xmms-plugin v0.4 package.
+# Copyright (C) 2005 Kemal Ilgar Eroglu.
+# This file is distributed under the same license as the xfce4-xmms-plugin package.
+# Kemal Ilgar Eroğlu, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: xfce4-xmms-plugin 0.4.1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
+"PO-Revision-Date: 2006-07-28 19:48+0100\n"
+"Last-Translator: Kemal Ilgar Eroglu\n"
+"Language-Team: Turkish <xfce-i18n at xfce.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../panel-plugin/xmms_plugin.c:756
+msgid "Properties"
+msgstr "Özellikler"
+
+#: ../panel-plugin/xmms_plugin.c:768
+msgid "Xfce4 XMMS Plugin Options"
+msgstr "XFCE4 XMMS Eklenti Seçenekleri"
+
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr "Yazıtipi boyutu"
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr "Yazının kayma hızı"
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr "Kayma adım uzunluğu"
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr "Gecikme süresi"
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr "Şarkı ismi kaydırılarak yazılsın"
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr "Şarkı konumunu göster"
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr "Ses düzeyini göster"
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr "Şarkı ismi yalın formatta yazılsın"
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr "Dikey panellerde ses çubuğu yatay olsun"
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr "BMP (Beep Media Player) kullan"
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr "Eklenti kapanınca XMMS/BMP de kapansın"
+
+#: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
+msgid "XMMS plugin for Xfce 4.4 panel"
+msgstr "XFCE 4.4 paneli için XMMS eklentisi"
+
+#: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:2
+msgid "Xfce4 XMMS Plugin"
+msgstr "XFCE4 XMMS Eklentisi"

Modified: xfce4-xmms-plugin/trunk/po/vi.po
===================================================================
--- xfce4-xmms-plugin/trunk/po/vi.po	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/vi.po	2006-08-27 15:37:33 UTC (rev 1928)
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: 2006-02-19 22:52+0300\n"
 "Last-Translator: Phan Vĩnh Thịnh <teppi at vnlinux.org>\n"
 "Language-Team: Vietnamese <none at li.org>\n"
@@ -15,14 +15,64 @@
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.9.1\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr "Thuộc tính"
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Tùy chọn Plugin XMMS của Xfce4"
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr "Plugin XMMS cho panel Xfce 4.4"

Modified: xfce4-xmms-plugin/trunk/po/xfce4-xmms-plugin.pot
===================================================================
--- xfce4-xmms-plugin/trunk/po/xfce4-xmms-plugin.pot	2006-08-27 14:14:49 UTC (rev 1927)
+++ xfce4-xmms-plugin/trunk/po/xfce4-xmms-plugin.pot	2006-08-27 15:37:33 UTC (rev 1928)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-13 21:02+0200\n"
+"POT-Creation-Date: 2006-08-27 08:26-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -16,14 +16,64 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../panel-plugin/xmms_plugin.c:748
+#: ../panel-plugin/xmms_plugin.c:756
 msgid "Properties"
 msgstr ""
 
-#: ../panel-plugin/xmms_plugin.c:760
+#: ../panel-plugin/xmms_plugin.c:768
 msgid "Xfce4 XMMS Plugin Options"
 msgstr ""
 
+#. put labels into the left column of our table
+#: ../panel-plugin/xmms_plugin.c:787
+msgid "Font Size"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:788
+msgid "Scroll Speed"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:789
+msgid "Scroll Stepwidth"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:790
+msgid "Scroll Delay"
+msgstr ""
+
+#. add check buttons for the scrolled title, progressbar and volume bar
+#: ../panel-plugin/xmms_plugin.c:802
+msgid "Show scrolled song title"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:803
+msgid "Show track position"
+msgstr ""
+
+#: ../panel-plugin/xmms_plugin.c:804
+msgid "Show volume level"
+msgstr ""
+
+#. add check button for simple title option
+#: ../panel-plugin/xmms_plugin.c:806
+msgid "Simple song title format"
+msgstr ""
+
+#. add check button for hor_vol_if_vertical option
+#: ../panel-plugin/xmms_plugin.c:808
+msgid "Horizontal volume bar on vertical panels"
+msgstr ""
+
+#. add check button for "Use BMP" option
+#: ../panel-plugin/xmms_plugin.c:811
+msgid "Use BMP (Beep Media Player)"
+msgstr ""
+
+#. add check button for quit xmms option
+#: ../panel-plugin/xmms_plugin.c:813
+msgid "Quit XMMS/BMP when plugin terminates"
+msgstr ""
+
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid "XMMS plugin for Xfce 4.4 panel"
 msgstr ""




More information about the Goodies-commits mailing list