changeset 3107:1f5552089a50

Just a few translatable strings.
author Stany HENRY <StrassBoy@gmail.com>
date Thu, 19 Jul 2007 21:02:49 +0200
parents 53b5106dbe09
children 710b3aca4d64
files src/audacious/glade/prefswin.glade src/audacious/ui_playlist.c
diffstat 2 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/src/audacious/glade/prefswin.glade	Thu Jul 19 10:30:17 2007 -0500
+++ b/src/audacious/glade/prefswin.glade	Thu Jul 19 21:02:49 2007 +0200
@@ -1042,7 +1042,7 @@
 				<widget class="GtkFontButton" id="playlist_font_button">
 				  <property name="visible">True</property>
 				  <property name="can_focus">True</property>
-				  <property name="title">Select playlist font:</property>
+				  <property name="title" translatable="yes">Select playlist font:</property>
 				  <property name="show_style">True</property>
 				  <property name="show_size">True</property>
 				  <property name="use_font">True</property>
@@ -3539,7 +3539,7 @@
 				<widget class="GtkLabel" id="label82">
 				  <property name="visible">True</property>
 				  <property name="label" translatable="yes">&lt;span size=&quot;small&quot;&gt;This is the amount of time to prebuffer audio streams by, in milliseconds.
-Increase this value if you are experiencing audio skipping. 
+Increase this value if you are experiencing audio skipping.
 Please note however, that high values will result in Audacious performing poorly.&lt;/span&gt;</property>
 				  <property name="use_underline">False</property>
 				  <property name="use_markup">True</property>
--- a/src/audacious/ui_playlist.c	Thu Jul 19 10:30:17 2007 -0500
+++ b/src/audacious/ui_playlist.c	Thu Jul 19 21:02:49 2007 +0200
@@ -407,7 +407,7 @@
     gdk_pointer_ungrab(GDK_CURRENT_TIME);
     playlistwin_resizing = FALSE;
     gdk_flush();
- 
+
     if (dock_is_moving(GTK_WINDOW(playlistwin)))
        dock_move_release(GTK_WINDOW(playlistwin));
     else
@@ -773,7 +773,7 @@
                          const gchar *filename)
 {
     GtkWidget *dialog;
-    
+
     g_return_if_fail(GTK_IS_WINDOW(parent));
     g_return_if_fail(filename);
 
@@ -817,7 +817,7 @@
 show_playlist_save_format_error(GtkWindow * parent,
                                 const gchar * filename)
 {
-    const gchar *markup = 
+    const gchar *markup =
         N_("<b><big>Unable to save playlist.</big></b>\n\n"
            "Unknown file type for '%s'.\n");
 
@@ -941,14 +941,14 @@
     hbox = gtk_hbox_new(FALSE, 5);
 
     /* static playlist */
-    toggle = gtk_check_button_new_with_label("Save as Static Playlist");
+    toggle = gtk_check_button_new_with_label(_("Save as Static Playlist"));
     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle),
                                  (playlist_get_active()->attribute & PLAYLIST_STATIC) ? TRUE : FALSE);
     g_signal_connect(G_OBJECT(toggle), "toggled", G_CALLBACK(on_static_toggle), dialog);
     gtk_box_pack_start(GTK_BOX(hbox), toggle, FALSE, FALSE, 0);
 
     /* use relative path */
-    toggle2 = gtk_check_button_new_with_label("Use Relative Path");
+    toggle2 = gtk_check_button_new_with_label(_("Use Relative Path"));
     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toggle2),
                                  (playlist_get_active()->attribute & PLAYLIST_USE_RELATIVE) ? TRUE : FALSE);
     g_signal_connect(G_OBJECT(toggle2), "toggled", G_CALLBACK(on_relative_toggle), dialog);
@@ -956,7 +956,7 @@
 
     gtk_widget_show_all(hbox);
     gtk_file_chooser_set_extra_widget(GTK_FILE_CHOOSER(dialog), hbox);
-   
+
     if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT)
         filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
     else
@@ -1049,7 +1049,7 @@
           event->x >= playlistwin_get_width() - 31 &&
           event->x < playlistwin_get_width() - 22))) {
 
-        if (event->type != GDK_2BUTTON_PRESS && 
+        if (event->type != GDK_2BUTTON_PRESS &&
             event->type != GDK_3BUTTON_PRESS) {
             playlistwin_resizing = TRUE;
             playlistwin_resize_x = cfg.playlist_width - event->x;
@@ -1550,7 +1550,7 @@
     /* This function creates the custom widgets used by the playlist editor */
 
     /* text box for displaying song title in shaded mode */
-    playlistwin_sinfo = ui_skinned_textbox_new(SKINNED_WINDOW(playlistwin)->fixed, 
+    playlistwin_sinfo = ui_skinned_textbox_new(SKINNED_WINDOW(playlistwin)->fixed,
                                                4, 4, playlistwin_get_width() - 35, TRUE, SKIN_TEXT);
 
     playlistwin_set_sinfo_font(cfg.playlist_font);