Skip to content

Commit 4cabb27

Browse files
committed
Changed Wrye Bash to Wrye Flash
1 parent 2edb8ae commit 4cabb27

11 files changed

Lines changed: 92 additions & 92 deletions

File tree

Mopy/bash/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
# bash/__init__.py
44
#
55
# GPL License and Copyright Notice ============================================
6-
# This file is part of Wrye Bash.
6+
# This file is part of Wrye Flash.
77
#
8-
# Wrye Bash is free software: you can redistribute it and/or modify
8+
# Wrye Flash is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU General Public License as published by
1010
# the Free Software Foundation, either version 3 of the License, or
1111
# (at your option) any later version.
1212
#
13-
# Wrye Bash is distributed in the hope that it will be useful,
13+
# Wrye Flash is distributed in the hope that it will be useful,
1414
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
# GNU General Public License for more details.
1717
#
1818
# You should have received a copy of the GNU General Public License
19-
# along with Wrye Bash. If not, see <http://www.gnu.org/licenses/>.
19+
# along with Wrye Flash. If not, see <http://www.gnu.org/licenses/>.
2020
#
21-
# Wrye Bash Copyright (C) 2011 Myk Taylor
21+
# Wrye Flash Copyright (C) 2011 Myk Taylor
2222
#
2323
# =============================================================================
2424

Mopy/bash/bapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import platform
88

99
try:
10-
# Wrye Bash specific support
10+
# Wrye Flash specific support
1111
import bolt
1212
from bolt import Path, GPath
1313
except:

Mopy/bash/barb.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# -*- coding: utf-8 -*-
22
#
33
# GPL License and Copyright Notice ============================================
4-
# This file is part of Wrye Bash.
4+
# This file is part of Wrye Flash.
55
#
6-
# Wrye Bash is free software; you can redistribute it and/or
6+
# Wrye Flash is free software; you can redistribute it and/or
77
# modify it under the terms of the GNU General Public License
88
# as published by the Free Software Foundation; either version 2
99
# of the License, or (at your option) any later version.
1010
#
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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU General Public License for more details.
1515
#
1616
# 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,
1818
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1919
#
20-
# Wrye Bash copyright (C) 2005, 2006, 2007, 2008, 2009 Wrye
20+
# Wrye Flash copyright (C) 2005, 2006, 2007, 2008, 2009 Wrye
2121
#
2222
# =============================================================================
2323

@@ -235,7 +235,7 @@ def PromptMismatch(self):
235235
#returns False if same app version or old version == 0 (as in not previously installed) or user cancels
236236
if basher.settings['bash.readme'][1] == '0': return False
237237
return not self.SameAppVersion() and self.PromptConfirm(
238-
_('A different version of Wrye Bash was previously installed.\n') +
238+
_('A different version of Wrye Flash was previously installed.\n') +
239239
_('Previous Version: %s\n') % (basher.settings['bash.readme'][1]) +
240240
_('Current Version: %s\n') % (self.verApp) +
241241
_('Do you want to create a backup of your Bash settings before they are overwritten?'))
@@ -245,15 +245,15 @@ def PromptContinue(self):
245245
return not askYes(self.parent,
246246
_('You did not create a backup of the Bash settings.\n') +
247247
_('If you continue, your current settings may be overwritten.\n') +
248-
_('Do you want to quit Wrye Bash now?'),
248+
_('Do you want to quit Wrye Flash now?'),
249249
_('No backup created!'))
250250

251251
def PromptQuit(self):
252252
#returns True if user quits
253253
return askYes(self.parent,
254254
_('There was an error while trying to backup the Bash settings!\n') +
255255
_('If you continue, your current settings may be overwritten.\n') +
256-
_('Do you want to quit Wrye Bash now?'),
256+
_('Do you want to quit Wrye Flash now?'),
257257
_('Unable to create backup!'))
258258

259259
def WarnFailed(self):
@@ -413,7 +413,7 @@ def WarnRestart(self):
413413
_('Your Bash settings have been successfuly restored.\n') +
414414
_('Backup Path: %s\n') % (self.dir.join(self.archive).s) +
415415
_('\n') +
416-
_('Before the settings can take effect, Wrye Bash must restart.\n') +
416+
_('Before the settings can take effect, Wrye Flash must restart.\n') +
417417
_('Click OK to restart now.'),
418418
_('Bash Settings Restored'))
419419

Mopy/bash/bash.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
# -*- coding: utf-8 -*-
22
#
33
# GPL License and Copyright Notice ============================================
4-
# This file is part of Wrye Bash.
4+
# This file is part of Wrye Flash.
55
#
6-
# Wrye Bash is free software; you can redistribute it and/or
6+
# Wrye Flash is free software; you can redistribute it and/or
77
# modify it under the terms of the GNU General Public License
88
# as published by the Free Software Foundation; either version 2
99
# of the License, or (at your option) any later version.
1010
#
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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU General Public License for more details.
1515
#
1616
# 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,
1818
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1919
#
20-
# Wrye Bash copyright (C) 2005, 2006, 2007, 2008, 2009 Wrye
20+
# Wrye Flash copyright (C) 2005, 2006, 2007, 2008, 2009 Wrye
2121
#
2222
# =============================================================================
2323

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
2525
initialization functions and then starts the main application loop."""
2626

2727
# Imports ---------------------------------------------------------------------
@@ -149,7 +149,7 @@ def exit():
149149
subprocess.Popen(sys.argv, executable=exePath.s, close_fds=bolt.close_fds) #close_fds is needed for the one instance checker
150150
except Exception, error:
151151
print error
152-
print _("Error Attempting to Restart Wrye Bash!")
152+
print _("Error Attempting to Restart Wrye Flash!")
153153
print _("cmd line: "), exePath.s, sys.argv
154154
print
155155
raise
@@ -198,12 +198,12 @@ def main():
198198
action='store_true',
199199
default=False,
200200
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.')
202202
backupGroup.add_option('-r', '--restore',
203203
action='store_true',
204204
default=False,
205205
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.')
207207
backupGroup.add_option('-f', '--filename',
208208
action='store',
209209
default='',
@@ -346,9 +346,9 @@ def main():
346346
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.
347347
bolt.close_fds = False
348348
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")
350350
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")
352352
if not run:
353353
return
354354

0 commit comments

Comments
 (0)