2 # -*- coding: UTF-8 -*-
3 # vim: expandtab sw=4 ts=4 sts=4:
8 __author__
= 'Michal Čihař'
9 __email__
= 'michal@cihar.com'
11 Copyright © 2003 - 2008 Michal Čihař
13 This program is free software; you can redistribute it and/or modify it
14 under the terms of the GNU General Public License version 2 as published by
15 the Free Software Foundation.
17 This program is distributed in the hope that it will be useful, but WITHOUT
18 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
22 You should have received a copy of the GNU General Public License along with
23 this program; if not, write to the Free Software Foundation, Inc.,
24 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
33 # Try to import iconv_codec to allow working on chinese windows
39 # Disable warning about missing files
40 # This can be caused by attempt to import Python modules, which don't
41 # have all DLLs satisfied.
42 if sys
.platform
.startswith('win'):
45 win32api
.SetErrorMode(win32con
.SEM_NOOPENFILEERRORBOX
)
49 Displays version information.
51 print _('Wammu - Windowed Gammu version %s') % Wammu
.__version
__
58 print _('Usage: %s [OPTION...]' % os
.path
.basename(__file__
))
61 print '%-20s ... %s' % (
64 print '%-20s ... %s' % (
66 _('show program version'))
67 print '%-20s ... %s' % (
69 _('force using of locales from current directory rather than system ones'))
74 Processes program options.
77 opts
, args
= getopt
.getopt(sys
.argv
[1:],
79 ['help', 'version', 'local-locales'])
80 except getopt
.GetoptError
, val
:
82 print _('Command line parsing failed with error:')
88 print _('Extra unrecognized parameters passed to program')
91 for opt
, dummy
in opts
:
92 if opt
in ('-l', '--local-locales'):
93 Wammu
.Locales
.UseLocal()
94 print _('Using local built locales!')
95 if opt
in ('-h', '--help'):
98 if opt
in ('-v', '--version'):
102 if __name__
== '__main__':
105 # need to be imported after locales are initialised