~ubuntu-branches/ubuntu/trusty/miro/trusty

« back to all changes in this revision

Viewing changes to portable/frontends/widgets/statictabs.py

  • Committer: Daniel Hahler
  • Date: 2010-04-13 18:51:35 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: ubuntu-launchpad@thequod.de-20100413185135-xi24v1diqg8w406x
Merging shared upstream rev into target branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Miro - an RSS based video player application
2
 
# Copyright (C) 2005-2009 Participatory Culture Foundation
 
2
# Copyright (C) 2005-2010 Participatory Culture Foundation
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
102
102
    id = 'videos'
103
103
    name = _('Video')
104
104
    icon_name = 'icon-video'
 
105
    media_type = u'video'
105
106
 
106
107
class AudioLibraryTab(StaticTab):
107
108
    id = 'audios'
108
109
    name = _('Audio')
109
110
    icon_name = 'icon-audio'
 
111
    media_type = u'audio'
110
112
 
111
113
class OtherLibraryTab(StaticTab):
112
114
    id = 'others'
113
115
    name = _('Other')
114
116
    icon_name = 'icon-other'
 
117
    media_type = u'other'
115
118
 
116
119
class DownloadsTab(StaticTab):
117
120
    id = 'downloading'