~cm-t/dash-privacy-interface/quickly_trunk

« back to all changes in this revision

Viewing changes to dash_privacy_interface/AboutDashPrivacyInterfaceDialog.py

  • Committer: cm-t arudy
  • Date: 2012-10-20 07:41:01 UTC
  • Revision ID: arudy@ubuntu-fr.org-20121020074101-4p8s40qzefe66cuo
commit before release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
### BEGIN LICENSE
 
3
# Copyright (C) 
 
4
# ubuntu-fr <LoCo Team> 
 
5
# kanor <Romain DUBREIL> <contact@kanor.fr>
 
6
# cm-t <Rudy ANDRÉ> <arudy@ubuntu-fr.org>
 
7
# olive <Olivier FRAYSSE> <olive@picapo.org>
 
8
# quesh <Frédéric MANDE> <quesh@quesh.fr>
 
9
# This program is free software: you can redistribute it and/or modify it 
 
10
# under the terms of the GNU General Public License version 3, as published 
 
11
# by the Free Software Foundation.
 
12
 
13
# This program is distributed in the hope that it will be useful, but 
 
14
# WITHOUT ANY WARRANTY; without even the implied warranties of 
 
15
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
 
16
# PURPOSE.  See the GNU General Public License for more details.
 
17
 
18
# You should have received a copy of the GNU General Public License along 
 
19
# with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
### END LICENSE
 
21
 
 
22
from locale import gettext as _
 
23
 
 
24
import logging
 
25
logger = logging.getLogger('dash_privacy_interface')
 
26
 
 
27
from dash_privacy_interface_lib.AboutDialog import AboutDialog
 
28
 
 
29
# See dash_privacy_interface_lib.AboutDialog.py for more details about how this class works.
 
30
class AboutDashPrivacyInterfaceDialog(AboutDialog):
 
31
    __gtype_name__ = "AboutDashPrivacyInterfaceDialog"
 
32
    
 
33
    def finish_initializing(self, builder): # pylint: disable=E1002
 
34
        """Set up the about dialog"""
 
35
        super(AboutDashPrivacyInterfaceDialog, self).finish_initializing(builder)
 
36
 
 
37
        # Code for other initialization actions should be added here.
 
38