~audio-recorder/audio-recorder/trunk

« back to all changes in this revision

Viewing changes to src/win-settings.c

  • Committer: Osmo Antero
  • Date: 2012-09-29 18:12:44 UTC
  • Revision ID: osmoma@gmail.com-20120929181244-gmrxd5xww9pua60a
Support new systems; Ubuntu 12.10, Fedora 18. Improved timer and VAD-modules. Better gst-pipeline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
 
275
275
        switch (item->type) {
276
276
        case MEDIA_PLAYER:
277
 
            // Translators: This a label in the [Additional settings] dialog
 
277
            // Translators: This is a label in the [Additional settings] dialog
278
278
            descr = g_strdup(_("Media players (RhythmBox, Banshee, etc.)"));
279
279
 
280
280
            pixbuf = NULL;
281
281
            
282
 
            // Translators: This a label/help text in the [Additional settings] dialog
 
282
            // Translators: This is a label/help text in the [Additional settings] dialog
283
283
            help_text = g_strdup(_("Select output device (speakers) for recording."));
284
284
            break;
285
285
 
288
288
 
289
289
            pixbuf = load_icon_pixbuf(item->icon_name);
290
290
 
291
 
            // Translators: This a label/help text in the [Additional settings] dialog
 
291
            // Translators: This is a label/help text in the [Additional settings] dialog
292
292
            help_text = g_strdup(_("Select both output device (speakers) and webcam/microphone."));
293
293
            break;
294
294
 
300
300
            pixbuf = get_pixbuf_from_file(path, 22, 22);
301
301
            g_free(path);
302
302
            
303
 
            // Translators: This a label/help text in the [Additional settings] dialog
 
303
            // Translators: This is a label/help text in the [Additional settings] dialog
304
304
            help_text = g_strdup(_("Select one or more devices for recording."));
305
305
            break;
306
306
        }
533
533
 
534
534
    gtk_window_set_transient_for(GTK_WINDOW(g_dialog), parent);
535
535
 
536
 
    gtk_window_set_default_size(GTK_WINDOW(g_dialog), 420, -1);
 
536
    gtk_window_set_default_size(GTK_WINDOW(g_dialog), 500, 600);
537
537
 
538
538
    gtk_window_set_resizable(GTK_WINDOW(g_dialog), FALSE);
539
539
 
757
757
 
758
758
        // Device types changed (bit test)?
759
759
        if ((g_changed_types & saved_dev_type) != 0) {
760
 
            // Let timer know that the settings have been altered, so it can re-start the listener (in gst-listener.c) etc.
 
760
            // Let timer know that the settings have been altered, so it can re-start the VAD (in gst-vad.c) etc.
761
761
            timer_settings_changed();
762
762
        }
763
763