~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/arch/unix/x11/gnome/uiscreenshot.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "vice.h"
28
28
 
29
29
#include <stdio.h>
 
30
#include <string.h>
30
31
 
31
32
#include "log.h"
32
33
#include "gfxoutput.h"
231
232
    num_buttons = gfxoutput_num_drivers();
232
233
    if (num_buttons < 1)
233
234
    {
234
 
        log_message(LOG_DEFAULT, _("No gfxoutputdrivers available"));
 
235
        log_message(LOG_DEFAULT, "No gfxoutputdrivers available");
235
236
        return 0;
236
237
    }
237
238
 
302
303
        gtk_list_store_set(drv_store, &iter, DRV_NAME, f->name, 
303
304
                           DRV_INDEX, i, -1);
304
305
 
305
 
        log_message(LOG_DEFAULT, _("FFMPEG Driver: %s"), f->name);
 
306
        log_message(LOG_DEFAULT, "FFMPEG Driver: %s", f->name);
306
307
 
307
308
        ac_store = gtk_list_store_new(3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT);
308
309
        for (j = 0; f->audio_codecs && f->audio_codecs[j].name; j++)
312
313
                               0, f->audio_codecs[j].name,
313
314
                               1, f->audio_codecs[j].id, 
314
315
                               2, j, -1);
315
 
            log_message(LOG_DEFAULT, _("\tAC: %s(%d)"), 
 
316
            log_message(LOG_DEFAULT, "\tAC: %s(%d)", 
316
317
                        f->audio_codecs[j].name,
317
318
                        f->audio_codecs[j].id);
318
319
        }
325
326
                               0, f->video_codecs[j].name,
326
327
                               1, f->video_codecs[j].id, 
327
328
                               2, j, -1);
328
 
            log_message(LOG_DEFAULT, _("\tVC: %s(%d)"), 
 
329
            log_message(LOG_DEFAULT, "\tVC: %s(%d)", 
329
330
                        f->video_codecs[j].name,
330
331
                        f->video_codecs[j].id);
331
332
        }