comparison src/amidi-plug/i_configure-fluidsynth.c @ 1290:5daedb3af7c9

"amidi-plug" : "i18n project" (part 1)
author Stany HENRY <StrassBoy@gmail.com>
date Thu, 19 Jul 2007 00:36:28 +0200
parents 59d793da5395
children d2e508857ded
comparison
equal deleted inserted replaced
1289:90d9d4cf619c 1290:5daedb3af7c9
804 G_CALLBACK(i_configure_ev_bufmargininc_commit) , buffer_margininc_spin ); 804 G_CALLBACK(i_configure_ev_bufmargininc_commit) , buffer_margininc_spin );
805 805
806 gtk_tooltips_set_tip( GTK_TOOLTIPS(tips) , soundfont_file_lv , 806 gtk_tooltips_set_tip( GTK_TOOLTIPS(tips) , soundfont_file_lv ,
807 _("* Select SoundFont files *\n" 807 _("* Select SoundFont files *\n"
808 "In order to play MIDI with FluidSynth, you need to specify at " 808 "In order to play MIDI with FluidSynth, you need to specify at "
809 "least one valid SoundFont file here (use absolute paths). The " 809 "least one valid SoundFont file here (use absolute paths). The "
810 "loading order is from the top (first) to the bottom (last).") , "" ); 810 "loading order is from the top (first) to the bottom (last).") , "" );
811 gtk_tooltips_set_tip( GTK_TOOLTIPS(tips) , soundfont_load_option[0] , 811 gtk_tooltips_set_tip( GTK_TOOLTIPS(tips) , soundfont_load_option[0] ,
812 _("* Load SoundFont on player start *\n" 812 _("* Load SoundFont on player start *\n"
813 "Depending on your system speed, SoundFont loading in FluidSynth will " 813 "Depending on your system speed, SoundFont loading in FluidSynth will "
814 "require up to a few seconds. This is a one-time task (the soundfont " 814 "require up to a few seconds. This is a one-time task (the soundfont "
951 GdkPixbuf *pagelabel_image_pix; 951 GdkPixbuf *pagelabel_image_pix;
952 pagelabel_vbox = gtk_vbox_new( FALSE , 1 ); 952 pagelabel_vbox = gtk_vbox_new( FALSE , 1 );
953 pagelabel_image_pix = gdk_pixbuf_new_from_xpm_data( (const gchar **)backend_fluidsynth_icon_xpm ); 953 pagelabel_image_pix = gdk_pixbuf_new_from_xpm_data( (const gchar **)backend_fluidsynth_icon_xpm );
954 pagelabel_image = gtk_image_new_from_pixbuf( pagelabel_image_pix ); g_object_unref( pagelabel_image_pix ); 954 pagelabel_image = gtk_image_new_from_pixbuf( pagelabel_image_pix ); g_object_unref( pagelabel_image_pix );
955 pagelabel_label = gtk_label_new( "" ); 955 pagelabel_label = gtk_label_new( "" );
956 gtk_label_set_markup( GTK_LABEL(pagelabel_label) , "<span size=\"smaller\">FluidSynth\nbackend</span>" ); 956 gtk_label_set_markup( GTK_LABEL(pagelabel_label) , _("<span size=\"smaller\">FluidSynth\nbackend</span>") );
957 gtk_label_set_justify( GTK_LABEL(pagelabel_label) , GTK_JUSTIFY_CENTER ); 957 gtk_label_set_justify( GTK_LABEL(pagelabel_label) , GTK_JUSTIFY_CENTER );
958 gtk_box_pack_start( GTK_BOX(pagelabel_vbox) , pagelabel_image , FALSE , FALSE , 1 ); 958 gtk_box_pack_start( GTK_BOX(pagelabel_vbox) , pagelabel_image , FALSE , FALSE , 1 );
959 gtk_box_pack_start( GTK_BOX(pagelabel_vbox) , pagelabel_label , FALSE , FALSE , 1 ); 959 gtk_box_pack_start( GTK_BOX(pagelabel_vbox) , pagelabel_label , FALSE , FALSE , 1 );
960 gtk_container_add( GTK_CONTAINER(fsyn_page_alignment) , pagelabel_vbox ); 960 gtk_container_add( GTK_CONTAINER(fsyn_page_alignment) , pagelabel_vbox );
961 gtk_widget_show_all( fsyn_page_alignment ); 961 gtk_widget_show_all( fsyn_page_alignment );