Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/utils/strs.py
blob: 4059bbfb9994dda52b6723ea65e8b32a414eaf95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
'''
Created on Jul 5, 2009

@author: doug
'''

# files
ConfigFile = '/home/doug/workspace/Muthris/docs/examples/config.xml'
LoggingFile = '/tmp/muthris-dev.log'

# file extensions
Ext_Level = '.mlvl'
Ext_Profile = '.mpro'

# XML locations
XP_LevelFolderLocation =    '/muthris/config/level-folders/folder/@location'
XP_ProfileFolderLocation =  '/muthris/config/profile-folders/folder/@location'
XP_LastProfileName =        '/muthris/config/last/profile/@name'
XP_LevelName =              '/muthris/level/@name'
XP_LevelDescription =       '/muthris/level/@description'
XP_ProfileName =            '/muthris/profile/@name'

# menu titles
Title_Main =            'Main Menu'
Title_ChangePlayer =    'Change Player'
Title_PlayGame =        'Play Game'
# Title_LevelOptions =  '' # title uses the name of the level
Title_SkillLevel =      'Skill Level'
Title_NumberOfPlayers = 'Number of Players'
Title_Seperator = ' - '

# indent spacing for curses
Indent_Title =      25
Indent_Options =    10
Indent_Prompt =     5