~ubuntu-branches/debian/sid/smplayer/sid

« back to all changes in this revision

Viewing changes to src/prefinput.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2008-01-31 13:44:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080131134453-nc4dwsn5pkiw5s9h
Tags: 0.6.0~rc1-1
* New upstream release.
* debian/control:
  - Build-depend on CDBS.
  - Updated upstream homepage.
* debian/copyright:
  - Updated download address.
* debian/rules:
  - Migrated to CDBS.
  - Tweaked get-orig-source to work with release candidates.
* debian/docs:
  - Removed Translations.txt, upstream removed it from the tarball.
  - Added Release_notes.txt.
* debian/manpages, debian/smplayer.1:
  - Deleted, manpage merged upstream.
* debian/smplayer.install:
  - Install usr/share/man.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2007 Ricardo Villalba <rvm@escomposlinux.org>
 
2
    Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
3
3
 
4
4
    This program is free software; you can redistribute it and/or modify
5
5
    it under the terms of the GNU General Public License as published by
60
60
        left_click_combo->addItem( tr("On top"), "on_top" );
61
61
        left_click_combo->addItem( tr("Mute"), "mute" );
62
62
        left_click_combo->addItem( tr("Playlist"), "show_playlist" );
 
63
        left_click_combo->addItem( tr("Reset zoom"), "reset_zoom" );
 
64
        left_click_combo->addItem( tr("Exit fullscreen"), "exit_fullscreen" );
 
65
        left_click_combo->addItem( tr("Normal speed"), "normal_speed" );
63
66
        left_click_combo->addItem( tr("Frame counter"), "frame_counter" );
64
67
        left_click_combo->addItem( tr("Preferences"), "show_preferences" );
65
 
        left_click_combo->addItem( tr("Reset zoom"), "reset_zoom" );
66
 
        left_click_combo->addItem( tr("Exit fullscreen"), "exit_fullscreen" );
67
68
        left_click_combo->addItem( tr("Double size"), "toggle_double_size" );
 
69
        left_click_combo->addItem( tr("Show equalizer"), "equalizer" );
68
70
 
69
71
        // Copy to other combos
70
72
        for (int n=0; n < left_click_combo->count(); n++) {