-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlobalMessages.cs
379 lines (377 loc) · 25.4 KB
/
GlobalMessages.cs
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
using ViPER4WindowsBin.Utils;
namespace ViPER4WindowsBin
{
internal class GlobalMessages
{
public static string LANGUAGE_VERSION_STR = "";
public static string LANGUAGE_TRANSLATOR_STR = "";
public static string OK = "OKay";
public static string CANCEL = "Cancel";
public static string ENABLE = "Enable";
public static string LANGUAGE_CHANGE_NOTICE = "The UI language changed, you need to restart the program.";
public static string MENU_LANGUAGE = "Language";
public static string MENU_SETTING = "Setting";
public static string MENU_HELP = "Help";
public static string LATENCY_SETTING = "Latency Setting";
public static string CURRENT_LATENCY = "Current Latency";
public static string DESIRED_LATENCY = "Desired Latency";
public static string LOW_LATENCY_NOTE = "Lower latency will increase CPU load.";
public static string CHANNEL_PAN = "Channel Pan";
public static string LEFT = "Left";
public static string RIGHT = "Right";
public static string BALANCE = "Balance";
public static string VIRTUALIZATION = "Virtualization";
public static string AUDIO_SYSTEM_CONFIG = "Audio system config";
public static string AUDIO_SYSTEM_MONO = "Mono";
public static string AUDIO_SYSTEM_STEREO = "2.0 System";
public static string AUDIO_SYSTEM_HEADSET = "Headset";
public static string AUDIO_SYSTEM_REARSTEREO = "Rear 2.0";
public static string AUDIO_SYSTEM_QUAD = "4.0 System";
public static string AUDIO_SYSTEM_X5P1 = "5.1 System";
public static string AUDIO_SYSTEM_X6P1 = "6.1 System";
public static string AUDIO_SYSTEM_X7P1 = "7.1 System";
public static string AUDIO_SYSTEM_X8P1 = "8.1 System";
public static string VIRT_APPLIED = "Apply virtualization";
public static string VIRT_PREPOST_PROCESS = "Pre/Post Process";
public static string VIRT_RESET = "Reset config";
public static string VIRT_SPEAKER = "Speaker";
public static string VIRT_SPEAKER_ANGLE = "Angle";
public static string VIRT_SPEAKER_FRONTLEFT = "Front Left";
public static string VIRT_SPEAKER_FRONTRIGHT = "Front Right";
public static string VIRT_SPEAKER_FRONTCENTER = "Front Center";
public static string VIRT_SPEAKER_LFE = "LFE (Subwoofer)";
public static string VIRT_SPEAKER_BACKLEFT = "Back Left";
public static string VIRT_SPEAKER_BACKRIGHT = "Back Right";
public static string VIRT_SPEAKER_BACKCENTER = "Back Center";
public static string VIRT_SPEAKER_SIDELEFT = "Side Left";
public static string VIRT_SPEAKER_SIDERIGHT = "Side Right";
public static string VIRT_ENVIRONMENT = "Virtual Environment";
public static string VIRT_ENVIR_SMALLROOM = "Small Room";
public static string VIRT_ENVIR_BATHROOM = "Bath Room";
public static string VIRT_ENVIR_LIVINGROOM = "Living Room";
public static string VIRT_ENVIR_STONEROOM = "Stone Room";
public static string VIRT_ENVIR_AUDITORIUM = "Auditorium";
public static string VIRT_ENVIR_CONCERTHALL = "Concert Hall";
public static string VIRT_ENVIR_HALLWAY = "Hallway";
public static string RESET_EFFECT = "Reset Effects";
public static string SETTINGS = "Settings";
public static string CLOSE_TO_TRAY = "Minimize app to tray when close";
public static string TRAY_MENU_SETTING = "Tray menu setting";
public static string TRAY_MENU_PRESETNAME = "Name";
public static string TRAY_MENU_PRESETMODE = "Mode";
public static string TRAY_MENU_PRESETFILE = "Preset";
public static string ADD_NEW_ITEM = "Add new item";
public static string REMOVE_ITEM = "Remove item";
public static string REMOVE_ITEM_QUESTION = "Do you really want to remove this item ?";
public static string MENU_TIPS_NAME = "Name:";
public static string MENU_TIPS_MODE = "Mode:";
public static string SELECT_PRESET_FILE = "Select preset file";
public static string UNNAMED = "Unnamed";
public static string SWITCH_OFF_EFFECT = "Switch off effect";
public static string SWITCH_ON_EFFECT = "Switch on effect";
public static string EXIT_APPLICTION = "Exit";
public static string ENABLE_APO_COEXIST = "Enable APO coexists";
public static string ENABLE_APO_COEXIST_WRN_LINE1 = "When APO coexists enabled, you can use all audio effects at the same time.";
public static string ENABLE_APO_COEXIST_WRN_LINE2 = "But maybe this is unstable, please turn off this function if you got any audio problem.";
public static string ENABLE_APO_COEXIST_RESTART = "You must restart your computer before the new setting will take effect.";
public static string CHECK_UPDATE = "Check for update";
public static string CHECK = "Check";
public static string VERSION_FROM_INTERNET = "Version from internet";
public static string COPY_DOWNLOAD_LINK = "Copy download link";
public static string ABOUT = "About";
public static string CONTROL_PANEL_VERSION = "Control Panel Version";
public static string DRIVER_VERSION = "V4W Driver Version";
public static string CODE_NAME = "V4W Codename";
public static string LANGUAGE_VERSION = "Language Translate Version";
public static string LANGUAGE_TRANSLATOR = "Language Translator";
public static string COPYRIGHT = "Copyright (C) 2013, vipercn.com. All rights reserved.";
public static string SUPPORT_FORUM = "Forum http://forum.vipersaudio.com";
public static string MASTER_POWER = "Power";
public static string MUSIC_MODE = "Music Mode";
public static string MOVIE_MODE = "Movie Mode";
public static string FREESTYLE_MODE = "Freestyle";
public static string PRESET = "Preset";
public static string LOAD_PRESET = "Load preset";
public static string SAVE_PRESET = "Save preset";
public static string ERROR = "Error";
public static string INFORMATION = "Information";
public static string CANT_LOAD_IRS = "Can't load impulse response, maybe selected wrong file.";
public static string DRIVER_NOT_CONFIG = "The driver not configured, please run \"Configure\" first.";
public static string CANT_SAVE_PRESET = "Can't save effect preset.";
public static string CANT_LOAD_PRESET = "Can't load effect preset.";
public static string TECHNICAL_INFO = "Technical info:";
public static string PRE_VOLUME = "Pre-Volume";
public static string POST_VOLUME = "Post-Volume";
public static string CONVOLVER = "Convolver";
public static string CONV_IR_GAIN = "IRS Power";
public static string OPEN_CONV_IRS = "Open Impulse Response Sample";
public static string SURROUND = "Surround";
public static string THREE_D_SURROUND = "3D Surround";
public static string SURROUND_3D = "Space Size";
public static string SURROUND_IMAGE = "Image Size";
public static string VHE_SURROUND = "ViPER Headphone Engine";
public static string VHE_SMALLEST_ROOM = "Smallest Room";
public static string VHE_SMALL_ROOM = "Small Room";
public static string VHE_MID_ROOM = "Mid Size Room";
public static string VHE_LARGE_ROOM = "Large Room";
public static string VHE_LARGEST_ROOM = "Largest Room";
public static string BASS = "ViPER XBass";
public static string BASS_SPKSIZE = "Speaker Size";
public static string BASS_GAIN = "Bass Level";
public static string NATURAL_BASS = "Natural Bass";
public static string PURE_BASS = "Pure Bass";
public static string CLARITY = "ViPER XClarity";
public static string NATURAL_CLARITY = "Natural";
public static string OZONE_CLARITY = "OZone+";
public static string XHIFI_CLARITY = "X-HiFi";
public static string CURE = "Cure Tech +";
public static string SLIGHT_CURE = "Slight";
public static string MODERATE_CURE = "Moderate";
public static string EXTREME_CURE = "Extreme";
public static string TUBE = "Tube Simulator";
public static string SMART_VOLUME = "ViPER Smart Volume";
public static string SMART_VOLUME_CONTROL_STRENGTH = "Control Strength";
public static string SMART_VOLUME_MAXLEVEL = "Max Gain";
public static string SMART_VOLUME_LEVEL = "Desired Volume";
public static string EQUALIZER_ADJUST = "Equalizer";
public static string COMPRESSOR_ADJUST = "Compressor";
public static string REVERB = "Reverberation";
public static string REVERB_PRESET = "Reverberation Preset";
public static string REVERB_PRESET_LIVINGROOM = "Living Room";
public static string REVERB_PRESET_BATHROOM = "Bath Room";
public static string REVERB_PRESET_BATHROOM_BATHING = "Bath Room (Bathing)";
public static string REVERB_PRESET_BEDROOM = "Bed Room";
public static string REVERB_PRESET_THEATER = "Theater";
public static string REVERB_PRESET_AUDITORIUM = "Auditorium";
public static string REVERB_PRESET_UNDERGROUND_PLAZA = "Underground Plaza";
public static string REVERB_PRESET_UNDERGROUND_PARKING = "Underground Parking";
public static string REVERB_PRESET_SCENE_SHOW = "Scene Show";
public static string REVERB_SIZE = "Room Size";
public static string REVERB_DAMPING = "Damping";
public static string REVERB_DENSITY = "Density";
public static string REVERB_BANDWIDTH = "Bandwidth";
public static string REVERB_DECAY = "Decay";
public static string REVERB_PREDELAY = "Pre-delay";
public static string REVERB_EARLYMIX = "Early Mix";
public static string REVERB_MIX = "Wet Mix";
public static string EQUALIZER = "Equalizer";
public static string EQUALIZER_REALTIME_ADJUST = "Realtime adjusting (more CPU usage)";
public static string EQUALIZER_PRESET = "Equalizer Preset";
public static string EQUALIZER_PRESET_FLAT = "Flat (Reset)";
public static string EQUALIZER_PRESET_SUPERBASS = "Super Bass";
public static string EQUALIZER_PRESET_SOFTBASS = "Soft Bass";
public static string EQUALIZER_PRESET_ROCK = "Rock Music";
public static string EQUALIZER_PRESET_RANDB = "R&B Music";
public static string EQUALIZER_PRESET_CLASSIC = "Classic Music";
public static string EQUALIZER_PRESET_POP = "POP Music";
public static string EQUALIZER_PRESET_JAZZ = "Jazz Music";
public static string EQUALIZER_PRESET_BLUES = "Blues Style";
public static string EQUALIZER_PRESET_ELECTRONIC = "Electronic";
public static string EQUALIZER_PRESET_VOCAL = "Vocal Enhance";
public static string COMPRESSOR = "Compressor";
public static string COMPRESSOR_THRESHOLD = "Threshold";
public static string COMPRESSOR_KNEEWIDTH = "Knee Width";
public static string COMPRESSOR_AUTOKNEE = "Auto Knee Control";
public static string COMPRESSOR_RATIO = "Ratio";
public static string COMPRESSOR_ATTACK = "Attack Time";
public static string COMPRESSOR_AUTOATTACK = "Auto Attack Control";
public static string COMPRESSOR_RELEASE = "Release Time";
public static string COMPRESSOR_AUTORELEASE = "Auto Release Control";
public static string COMPRESSOR_MAKEUPGAIN = "Make-Up Gain";
public static string COMPRESSOR_AUTOGAIN = "Auto Gain Control";
public static string COMPRESSOR_MISC = "Misc";
public static string COMPRESSOR_NOCLIP = "Prevent Clipping";
public static string COMPRESSOR_KNEEMULT = "Knee Mult";
public static string COMPRESSOR_MAXATTACK = "Max Attack Time";
public static string COMPRESSOR_MAXRELEASE = "Max Release Time";
public static string COMPRESSOR_CRESTTIME = "Crest Time";
public static string COMPRESSOR_ADAPTTIME = "Adapt Time";
public static void LoadMessages(string szLanguageFile)
{
ConfigFile configFile = new ConfigFile(szLanguageFile);
LANGUAGE_VERSION_STR = configFile.ReadConfig("$LANGUAGE_VERSION_STR");
LANGUAGE_TRANSLATOR_STR = configFile.ReadConfig("$LANGUAGE_TRANSLATOR_STR");
OK = configFile.ReadConfig("$OK");
CANCEL = configFile.ReadConfig("$CANCEL");
ENABLE = configFile.ReadConfig("$ENABLE");
LANGUAGE_CHANGE_NOTICE = configFile.ReadConfig("$LANGUAGE_CHANGE_NOTICE");
MENU_LANGUAGE = configFile.ReadConfig("$MENU_LANGUAGE");
MENU_SETTING = configFile.ReadConfig("$MENU_SETTING");
MENU_HELP = configFile.ReadConfig("$MENU_HELP");
LATENCY_SETTING = configFile.ReadConfig("$LATENCY_SETTING");
CURRENT_LATENCY = configFile.ReadConfig("$CURRENT_LATENCY");
DESIRED_LATENCY = configFile.ReadConfig("$DESIRED_LATENCY");
LOW_LATENCY_NOTE = configFile.ReadConfig("$LOW_LATENCY_NOTE");
CHANNEL_PAN = configFile.ReadConfig("$CHANNEL_PAN");
LEFT = configFile.ReadConfig("$LEFT");
RIGHT = configFile.ReadConfig("$RIGHT");
BALANCE = configFile.ReadConfig("$BALANCE");
VIRTUALIZATION = configFile.ReadConfig("$VIRTUALIZATION");
AUDIO_SYSTEM_CONFIG = configFile.ReadConfig("$AUDIO_SYSTEM_CONFIG");
AUDIO_SYSTEM_MONO = configFile.ReadConfig("$AUDIO_SYSTEM_MONO");
AUDIO_SYSTEM_STEREO = configFile.ReadConfig("$AUDIO_SYSTEM_STEREO");
AUDIO_SYSTEM_HEADSET = configFile.ReadConfig("$AUDIO_SYSTEM_HEADSET");
AUDIO_SYSTEM_REARSTEREO = configFile.ReadConfig("$AUDIO_SYSTEM_REARSTEREO");
AUDIO_SYSTEM_QUAD = configFile.ReadConfig("$AUDIO_SYSTEM_QUAD");
AUDIO_SYSTEM_X5P1 = configFile.ReadConfig("$AUDIO_SYSTEM_X5P1");
AUDIO_SYSTEM_X6P1 = configFile.ReadConfig("$AUDIO_SYSTEM_X6P1");
AUDIO_SYSTEM_X7P1 = configFile.ReadConfig("$AUDIO_SYSTEM_X7P1");
AUDIO_SYSTEM_X8P1 = configFile.ReadConfig("$AUDIO_SYSTEM_X8P1");
VIRT_APPLIED = configFile.ReadConfig("$VIRT_APPLIED");
VIRT_PREPOST_PROCESS = configFile.ReadConfig("$VIRT_PREPOST_PROCESS");
VIRT_RESET = configFile.ReadConfig("$VIRT_RESET");
VIRT_SPEAKER = configFile.ReadConfig("$VIRT_SPEAKER");
VIRT_SPEAKER_ANGLE = configFile.ReadConfig("$VIRT_SPEAKER_ANGLE");
VIRT_SPEAKER_FRONTLEFT = configFile.ReadConfig("$VIRT_SPEAKER_FRONTLEFT");
VIRT_SPEAKER_FRONTRIGHT = configFile.ReadConfig("$VIRT_SPEAKER_FRONTRIGHT");
VIRT_SPEAKER_FRONTCENTER = configFile.ReadConfig("$VIRT_SPEAKER_FRONTCENTER");
VIRT_SPEAKER_LFE = configFile.ReadConfig("$VIRT_SPEAKER_LFE");
VIRT_SPEAKER_BACKLEFT = configFile.ReadConfig("$VIRT_SPEAKER_BACKLEFT");
VIRT_SPEAKER_BACKRIGHT = configFile.ReadConfig("$VIRT_SPEAKER_BACKRIGHT");
VIRT_SPEAKER_BACKCENTER = configFile.ReadConfig("$VIRT_SPEAKER_BACKCENTER");
VIRT_SPEAKER_SIDELEFT = configFile.ReadConfig("$VIRT_SPEAKER_SIDELEFT");
VIRT_SPEAKER_SIDERIGHT = configFile.ReadConfig("$VIRT_SPEAKER_SIDERIGHT");
VIRT_ENVIRONMENT = configFile.ReadConfig("$VIRT_ENVIRONMENT");
VIRT_ENVIR_SMALLROOM = configFile.ReadConfig("$VIRT_ENVIR_SMALLROOM");
VIRT_ENVIR_BATHROOM = configFile.ReadConfig("$VIRT_ENVIR_BATHROOM");
VIRT_ENVIR_LIVINGROOM = configFile.ReadConfig("$VIRT_ENVIR_LIVINGROOM");
VIRT_ENVIR_STONEROOM = configFile.ReadConfig("$VIRT_ENVIR_STONEROOM");
VIRT_ENVIR_AUDITORIUM = configFile.ReadConfig("$VIRT_ENVIR_AUDITORIUM");
VIRT_ENVIR_CONCERTHALL = configFile.ReadConfig("$VIRT_ENVIR_CONCERTHALL");
VIRT_ENVIR_HALLWAY = configFile.ReadConfig("$VIRT_ENVIR_HALLWAY");
RESET_EFFECT = configFile.ReadConfig("$RESET_EFFECT");
SETTINGS = configFile.ReadConfig("$SETTINGS");
CLOSE_TO_TRAY = configFile.ReadConfig("$CLOSE_TO_TRAY");
TRAY_MENU_SETTING = configFile.ReadConfig("$TRAY_MENU_SETTING");
TRAY_MENU_PRESETNAME = configFile.ReadConfig("$TRAY_MENU_PRESETNAME");
TRAY_MENU_PRESETMODE = configFile.ReadConfig("$TRAY_MENU_PRESETMODE");
TRAY_MENU_PRESETFILE = configFile.ReadConfig("$TRAY_MENU_PRESETFILE");
ADD_NEW_ITEM = configFile.ReadConfig("$ADD_NEW_ITEM");
REMOVE_ITEM = configFile.ReadConfig("$REMOVE_ITEM");
REMOVE_ITEM_QUESTION = configFile.ReadConfig("$REMOVE_ITEM_QUESTION");
MENU_TIPS_NAME = configFile.ReadConfig("$MENU_TIPS_NAME");
MENU_TIPS_MODE = configFile.ReadConfig("$MENU_TIPS_MODE");
SELECT_PRESET_FILE = configFile.ReadConfig("$SELECT_PRESET_FILE");
UNNAMED = configFile.ReadConfig("$UNNAMED");
SWITCH_OFF_EFFECT = configFile.ReadConfig("$SWITCH_OFF_EFFECT");
SWITCH_ON_EFFECT = configFile.ReadConfig("$SWITCH_ON_EFFECT");
EXIT_APPLICTION = configFile.ReadConfig("$EXIT_APPLICTION");
ENABLE_APO_COEXIST = configFile.ReadConfig("$ENABLE_APO_COEXIST");
ENABLE_APO_COEXIST_WRN_LINE1 = configFile.ReadConfig("$ENABLE_APO_COEXIST_WRN_LINE1");
ENABLE_APO_COEXIST_WRN_LINE2 = configFile.ReadConfig("$ENABLE_APO_COEXIST_WRN_LINE2");
ENABLE_APO_COEXIST_RESTART = configFile.ReadConfig("$ENABLE_APO_COEXIST_RESTART");
CHECK_UPDATE = configFile.ReadConfig("$CHECK_UPDATE");
CHECK = configFile.ReadConfig("$CHECK");
VERSION_FROM_INTERNET = configFile.ReadConfig("$VERSION_FROM_INTERNET");
COPY_DOWNLOAD_LINK = configFile.ReadConfig("$COPY_DOWNLOAD_LINK");
ABOUT = configFile.ReadConfig("$ABOUT");
CONTROL_PANEL_VERSION = configFile.ReadConfig("$CONTROL_PANEL_VERSION");
DRIVER_VERSION = configFile.ReadConfig("$DRIVER_VERSION");
CODE_NAME = configFile.ReadConfig("$CODE_NAME");
LANGUAGE_VERSION = configFile.ReadConfig("$LANGUAGE_VERSION");
LANGUAGE_TRANSLATOR = configFile.ReadConfig("$LANGUAGE_TRANSLATOR");
COPYRIGHT = configFile.ReadConfig("$COPYRIGHT");
SUPPORT_FORUM = configFile.ReadConfig("$SUPPORT_FORUM");
MASTER_POWER = configFile.ReadConfig("$MASTER_POWER");
MUSIC_MODE = configFile.ReadConfig("$MUSIC_MODE");
MOVIE_MODE = configFile.ReadConfig("$MOVIE_MODE");
FREESTYLE_MODE = configFile.ReadConfig("$FREESTYLE_MODE");
PRESET = configFile.ReadConfig("$PRESET");
LOAD_PRESET = configFile.ReadConfig("$LOAD_PRESET");
SAVE_PRESET = configFile.ReadConfig("$SAVE_PRESET");
ERROR = configFile.ReadConfig("$ERROR");
INFORMATION = configFile.ReadConfig("$INFORMATION");
CANT_LOAD_IRS = configFile.ReadConfig("$CANT_LOAD_IRS");
DRIVER_NOT_CONFIG = configFile.ReadConfig("$DRIVER_NOT_CONFIG");
CANT_SAVE_PRESET = configFile.ReadConfig("$CANT_SAVE_PRESET");
CANT_LOAD_PRESET = configFile.ReadConfig("$CANT_LOAD_PRESET");
TECHNICAL_INFO = configFile.ReadConfig("$TECHNICAL_INFO");
PRE_VOLUME = configFile.ReadConfig("$PRE_VOLUME");
POST_VOLUME = configFile.ReadConfig("$POST_VOLUME");
CONVOLVER = configFile.ReadConfig("$CONVOLVER");
CONV_IR_GAIN = configFile.ReadConfig("$CONV_IR_GAIN");
OPEN_CONV_IRS = configFile.ReadConfig("$OPEN_CONV_IRS");
SURROUND = configFile.ReadConfig("$SURROUND");
THREE_D_SURROUND = configFile.ReadConfig("$THREE_D_SURROUND");
SURROUND_3D = configFile.ReadConfig("$SURROUND_3D");
SURROUND_IMAGE = configFile.ReadConfig("$SURROUND_IMAGE");
VHE_SURROUND = configFile.ReadConfig("$VHE_SURROUND");
VHE_SMALLEST_ROOM = configFile.ReadConfig("$VHE_SMALLEST_ROOM");
VHE_SMALL_ROOM = configFile.ReadConfig("$VHE_SMALL_ROOM");
VHE_MID_ROOM = configFile.ReadConfig("$VHE_MID_ROOM");
VHE_LARGE_ROOM = configFile.ReadConfig("$VHE_LARGE_ROOM");
VHE_LARGEST_ROOM = configFile.ReadConfig("$VHE_LARGEST_ROOM");
BASS = configFile.ReadConfig("$BASS");
BASS_SPKSIZE = configFile.ReadConfig("$BASS_SPKSIZE");
BASS_GAIN = configFile.ReadConfig("$BASS_GAIN");
NATURAL_BASS = configFile.ReadConfig("$NATURAL_BASS");
PURE_BASS = configFile.ReadConfig("$PURE_BASS");
CLARITY = configFile.ReadConfig("$CLARITY");
NATURAL_CLARITY = configFile.ReadConfig("$NATURAL_CLARITY");
OZONE_CLARITY = configFile.ReadConfig("$OZONE_CLARITY");
XHIFI_CLARITY = configFile.ReadConfig("$XHIFI_CLARITY");
CURE = configFile.ReadConfig("$CURE");
SLIGHT_CURE = configFile.ReadConfig("$SLIGHT_CURE");
MODERATE_CURE = configFile.ReadConfig("$MODERATE_CURE");
EXTREME_CURE = configFile.ReadConfig("$EXTREME_CURE");
TUBE = configFile.ReadConfig("$TUBE");
SMART_VOLUME = configFile.ReadConfig("$SMART_VOLUME");
SMART_VOLUME_CONTROL_STRENGTH = configFile.ReadConfig("$SMART_VOLUME_CONTROL_STRENGTH");
SMART_VOLUME_MAXLEVEL = configFile.ReadConfig("$SMART_VOLUME_MAXLEVEL");
SMART_VOLUME_LEVEL = configFile.ReadConfig("$SMART_VOLUME_LEVEL");
EQUALIZER_ADJUST = configFile.ReadConfig("$EQUALIZER_ADJUST");
COMPRESSOR_ADJUST = configFile.ReadConfig("$COMPRESSOR_ADJUST");
REVERB = configFile.ReadConfig("$REVERB");
REVERB_PRESET = configFile.ReadConfig("$REVERB_PRESET");
REVERB_PRESET_LIVINGROOM = configFile.ReadConfig("$REVERB_PRESET_LIVINGROOM");
REVERB_PRESET_BATHROOM = configFile.ReadConfig("$REVERB_PRESET_BATHROOM");
REVERB_PRESET_BATHROOM_BATHING = configFile.ReadConfig("$REVERB_PRESET_BATHROOM_BATHING");
REVERB_PRESET_BEDROOM = configFile.ReadConfig("$REVERB_PRESET_BEDROOM");
REVERB_PRESET_THEATER = configFile.ReadConfig("$REVERB_PRESET_THEATER");
REVERB_PRESET_AUDITORIUM = configFile.ReadConfig("$REVERB_PRESET_AUDITORIUM");
REVERB_PRESET_UNDERGROUND_PLAZA = configFile.ReadConfig("$REVERB_PRESET_UNDERGROUND_PLAZA");
REVERB_PRESET_UNDERGROUND_PARKING = configFile.ReadConfig("$REVERB_PRESET_UNDERGROUND_PARKING");
REVERB_PRESET_SCENE_SHOW = configFile.ReadConfig("$REVERB_PRESET_SCENE_SHOW");
REVERB_SIZE = configFile.ReadConfig("$REVERB_SIZE");
REVERB_DAMPING = configFile.ReadConfig("$REVERB_DAMPING");
REVERB_DENSITY = configFile.ReadConfig("$REVERB_DENSITY");
REVERB_BANDWIDTH = configFile.ReadConfig("$REVERB_BANDWIDTH");
REVERB_DECAY = configFile.ReadConfig("$REVERB_DECAY");
REVERB_PREDELAY = configFile.ReadConfig("$REVERB_PREDELAY");
REVERB_EARLYMIX = configFile.ReadConfig("$REVERB_EARLYMIX");
REVERB_MIX = configFile.ReadConfig("$REVERB_MIX");
EQUALIZER = configFile.ReadConfig("$EQUALIZER");
EQUALIZER_REALTIME_ADJUST = configFile.ReadConfig("$EQUALIZER_REALTIME_ADJUST");
EQUALIZER_PRESET = configFile.ReadConfig("$EQUALIZER_PRESET");
EQUALIZER_PRESET_FLAT = configFile.ReadConfig("$EQUALIZER_PRESET_FLAT");
EQUALIZER_PRESET_SUPERBASS = configFile.ReadConfig("$EQUALIZER_PRESET_SUPERBASS");
EQUALIZER_PRESET_SOFTBASS = configFile.ReadConfig("$EQUALIZER_PRESET_SOFTBASS");
EQUALIZER_PRESET_ROCK = configFile.ReadConfig("$EQUALIZER_PRESET_ROCK");
EQUALIZER_PRESET_RANDB = configFile.ReadConfig("$EQUALIZER_PRESET_RANDB");
EQUALIZER_PRESET_CLASSIC = configFile.ReadConfig("$EQUALIZER_PRESET_CLASSIC");
EQUALIZER_PRESET_POP = configFile.ReadConfig("$EQUALIZER_PRESET_POP");
EQUALIZER_PRESET_JAZZ = configFile.ReadConfig("$EQUALIZER_PRESET_JAZZ");
EQUALIZER_PRESET_BLUES = configFile.ReadConfig("$EQUALIZER_PRESET_BLUES");
EQUALIZER_PRESET_ELECTRONIC = configFile.ReadConfig("$EQUALIZER_PRESET_ELECTRONIC");
EQUALIZER_PRESET_VOCAL = configFile.ReadConfig("$EQUALIZER_PRESET_VOCAL");
COMPRESSOR = configFile.ReadConfig("$COMPRESSOR");
COMPRESSOR_THRESHOLD = configFile.ReadConfig("$COMPRESSOR_THRESHOLD");
COMPRESSOR_KNEEWIDTH = configFile.ReadConfig("$COMPRESSOR_KNEEWIDTH");
COMPRESSOR_AUTOKNEE = configFile.ReadConfig("$COMPRESSOR_AUTOKNEE");
COMPRESSOR_RATIO = configFile.ReadConfig("$COMPRESSOR_RATIO");
COMPRESSOR_ATTACK = configFile.ReadConfig("$COMPRESSOR_ATTACK");
COMPRESSOR_AUTOATTACK = configFile.ReadConfig("$COMPRESSOR_AUTOATTACK");
COMPRESSOR_RELEASE = configFile.ReadConfig("$COMPRESSOR_RELEASE");
COMPRESSOR_AUTORELEASE = configFile.ReadConfig("$COMPRESSOR_AUTORELEASE");
COMPRESSOR_MAKEUPGAIN = configFile.ReadConfig("$COMPRESSOR_MAKEUPGAIN");
COMPRESSOR_AUTOGAIN = configFile.ReadConfig("$COMPRESSOR_AUTOGAIN");
COMPRESSOR_MISC = configFile.ReadConfig("$COMPRESSOR_MISC");
COMPRESSOR_NOCLIP = configFile.ReadConfig("$COMPRESSOR_NOCLIP");
COMPRESSOR_KNEEMULT = configFile.ReadConfig("$COMPRESSOR_KNEEMULT");
COMPRESSOR_MAXATTACK = configFile.ReadConfig("$COMPRESSOR_MAXATTACK");
COMPRESSOR_MAXRELEASE = configFile.ReadConfig("$COMPRESSOR_MAXRELEASE");
COMPRESSOR_CRESTTIME = configFile.ReadConfig("$COMPRESSOR_CRESTTIME");
COMPRESSOR_ADAPTTIME = configFile.ReadConfig("$COMPRESSOR_ADAPTTIME");
}
}
}