source: projects/pygtk-rpminstall/trunk/rpminstall @ 5051

Revision 5051, 1.1 KB checked in by yasumichi, 13 years ago (diff)

integlate gettext to main driver

  • Property svn:executable set to *
Line 
1#! /usr/bin/env python
2
3# rpminstall
4# Copyright (C) Yasumichi Akahoshi 2011 <yasumichi@vinelinux.org>
5#
6# pygtk-rpminstall is free software: you can redistribute it and/or modify it
7# under the terms of the GNU General Public License as published by the
8# Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# pygtk-rpminstall is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14# See the GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19from gi.repository import Gtk
20import gettext
21gettext.install('rpminstall')
22gettext.bindtextdomain("rpminstall")
23gettext.textdomain("rpminstall")
24
25# Import from src first so that we can run directly from the source tree for
26# development.
27try:
28    from src import rpminstall
29except ImportError, e:
30    from rpminstall import rpminstall
31
32app = rpminstall.GUI()
33Gtk.main()
34
Note: See TracBrowser for help on using the repository browser.