This commit is contained in:
Loudrob 2015-07-03 13:14:21 -04:00
parent 9b5d51f65f
commit 1716707f2d
2 changed files with 5 additions and 0 deletions

View file

@ -67,6 +67,10 @@ class DistributedBossbotBoss(DistributedBossCog.DistributedBossCog, FSM.FSM):
def announceGenerate(self): def announceGenerate(self):
global OneBossCog global OneBossCog
DistributedBossCog.DistributedBossCog.announceGenerate(self) DistributedBossCog.DistributedBossCog.announceGenerate(self)
self.setName(TTLocalizer.BossbotBossName)
nameInfo = TTLocalizer.BossCogNameWithDept % {'name': self.name,
'dept': SuitDNA.getDeptFullname(self.style.dept)}
self.setDisplayName(nameInfo)
self.loadEnvironment() self.loadEnvironment()
self.__makeResistanceToon() self.__makeResistanceToon()
base.localAvatar.chatMgr.chatInputSpeedChat.addCEOMenu() base.localAvatar.chatMgr.chatInputSpeedChat.addCEOMenu()

View file

@ -4689,6 +4689,7 @@ MissingKeySanityCheck = 'Ignore me'
SellbotBossName = 'Senior V. P.' SellbotBossName = 'Senior V. P.'
CashbotBossName = 'C. F. O.' CashbotBossName = 'C. F. O.'
LawbotBossName = 'Chief Justice' LawbotBossName = 'Chief Justice'
BossbotBossName = 'C. E. O.'
BossCogNameWithDept = '%(name)s\n%(dept)s' BossCogNameWithDept = '%(name)s\n%(dept)s'
BossCogPromoteDoobers = 'You are hereby promoted to full-fledged %s. Congratulations!' BossCogPromoteDoobers = 'You are hereby promoted to full-fledged %s. Congratulations!'
BossCogDoobersAway = {'s': 'Go! And make that sale!'} BossCogDoobersAway = {'s': 'Go! And make that sale!'}