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

Revision 5093, 1.2 KB checked in by yasumichi, 13 years ago (diff)

fixed gettext related.

  • 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 locale
21import gettext
22
23locale.setlocale(locale.LC_ALL, '')
24gettext.bindtextdomain("rpminstall")
25gettext.textdomain("rpminstall")
26gettext.install('rpminstall', unicode=True)
27
28# Import from src first so that we can run directly from the source tree for
29# development.
30try:
31    from src import rpminstall
32except ImportError, e:
33    from rpminstall import rpminstall
34
35app = rpminstall.GUI()
36Gtk.main()
37
Note: See TracBrowser for help on using the repository browser.