|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | # |
3 | 3 | # GPL License and Copyright Notice ============================================ |
4 | | -# This file is part of Wrye Bash. |
| 4 | +# This file is part of Wrye Flash. |
5 | 5 | # |
6 | | -# Wrye Bash is free software; you can redistribute it and/or |
| 6 | +# Wrye Flash is free software; you can redistribute it and/or |
7 | 7 | # modify it under the terms of the GNU General Public License |
8 | 8 | # as published by the Free Software Foundation; either version 2 |
9 | 9 | # of the License, or (at your option) any later version. |
10 | 10 | # |
11 | | -# Wrye Bash is distributed in the hope that it will be useful, |
| 11 | +# Wrye Flash is distributed in the hope that it will be useful, |
12 | 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | 14 | # GNU General Public License for more details. |
15 | 15 | # |
16 | 16 | # You should have received a copy of the GNU General Public License |
17 | | -# along with Wrye Bash; if not, write to the Free Software Foundation, |
| 17 | +# along with Wrye Flash; if not, write to the Free Software Foundation, |
18 | 18 | # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 | 19 | # |
20 | | -# Wrye Bash copyright (C) 2005, 2006, 2007, 2008, 2009 Wrye |
| 20 | +# Wrye Flash copyright (C) 2005, 2006, 2007, 2008, 2009 Wrye |
21 | 21 | # |
22 | 22 | # ============================================================================= |
23 | 23 |
|
24 | | -"""This module starts the Wrye Bash application in console mode. Basically, it runs some |
| 24 | +"""This module starts the Wrye Flash application in console mode. Basically, it runs some |
25 | 25 | initialization functions and then starts the main application loop.""" |
26 | 26 |
|
27 | 27 | # Imports --------------------------------------------------------------------- |
@@ -149,7 +149,7 @@ def exit(): |
149 | 149 | subprocess.Popen(sys.argv, executable=exePath.s, close_fds=bolt.close_fds) #close_fds is needed for the one instance checker |
150 | 150 | except Exception, error: |
151 | 151 | print error |
152 | | - print _("Error Attempting to Restart Wrye Bash!") |
| 152 | + print _("Error Attempting to Restart Wrye Flash!") |
153 | 153 | print _("cmd line: "), exePath.s, sys.argv |
154 | 154 | print |
155 | 155 | raise |
@@ -198,12 +198,12 @@ def main(): |
198 | 198 | action='store_true', |
199 | 199 | default=False, |
200 | 200 | dest='backup', |
201 | | - help='Backup all Bash settings to an archive file before the app launches. Either specify the filepath with the -f/--filename options or Wrye Bash will prompt the user for the backup file path.') |
| 201 | + help='Backup all Bash settings to an archive file before the app launches. Either specify the filepath with the -f/--filename options or Wrye Flash will prompt the user for the backup file path.') |
202 | 202 | backupGroup.add_option('-r', '--restore', |
203 | 203 | action='store_true', |
204 | 204 | default=False, |
205 | 205 | dest='restore', |
206 | | - help='Backup all Bash settings to an archive file before the app launches. Either specify the filepath with the -f/--filename options or Wrye Bash will prompt the user for the backup file path.') |
| 206 | + help='Backup all Bash settings to an archive file before the app launches. Either specify the filepath with the -f/--filename options or Wrye Flash will prompt the user for the backup file path.') |
207 | 207 | backupGroup.add_option('-f', '--filename', |
208 | 208 | action='store', |
209 | 209 | default='', |
@@ -346,9 +346,9 @@ def main(): |
346 | 346 | if sys.version[0:3] < '2.6': #nasty, may cause failure in oneInstanceChecker but better than bash failing to open things for no (user) apparent reason such as in 2.5.2 and under. |
347 | 347 | bolt.close_fds = False |
348 | 348 | if sys.version[0:3] == 2.5: |
349 | | - run = balt.askYes(None,"Warning: You are using a python version prior to 2.6 and there may be some instances that failures will occur. Updating is recommended but not imperative. Do you still want to run Wrye Bash right now?","Warning OLD Python version detected") |
| 349 | + run = balt.askYes(None,"Warning: You are using a python version prior to 2.6 and there may be some instances that failures will occur. Updating is recommended but not imperative. Do you still want to run Wrye Flash right now?","Warning OLD Python version detected") |
350 | 350 | else: |
351 | | - run = balt.askYes(None,"Warning: You are using a Python version prior to 2.5x which is totally out of date and ancient and Bash will likely not like it and may totally refuse to work. Please update to a more recent version of Python(2.6x or 2.7x is preferred). Do you still want to run Wrye Bash?", "Warning OLD Python version detected") |
| 351 | + run = balt.askYes(None,"Warning: You are using a Python version prior to 2.5x which is totally out of date and ancient and Bash will likely not like it and may totally refuse to work. Please update to a more recent version of Python(2.6x or 2.7x is preferred). Do you still want to run Wrye Flash?", "Warning OLD Python version detected") |
352 | 352 | if not run: |
353 | 353 | return |
354 | 354 |
|
|
0 commit comments