-
Notifications
You must be signed in to change notification settings - Fork 4
/
LANGUAGE
347 lines (294 loc) · 20.7 KB
/
LANGUAGE
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
[enu default]
// Options Menu Titles
ACE_MENU = "\c[FAK_Blue]Ⓐ\c- AceCorp: Engineering Dept";
ACE_MENU_WEAPONS_TEXT = "\c[FAK_Blue]Weapons Category";
ACE_MENU_ITEMS_TEXT = "\c[FAK_Blue]Items Category";
ACE_MENU_WEAPONS = "Weapons";
ACE_MENU_ITEMS = "Items";
ACE_MENU_LINES = "\c[FAK_Blue]---";
MENU_PISTOLS_TITLE = "--- Pistols ---";
MENU_SHOTGUNS_TITLE = "--- Shotguns ---";
MENU_MACHINEGUNS_TITLE = "--- Machine Guns ---";
MENU_EXPLOSIVES_TITLE = "--- Explosives ---";
MENU_RIFLES_TITLE = "--- Rifles ---";
MENU_ENERGYWEAPONS_TITLE = "--- Energy Weapons ---";
MENU_ARMOUR_TITLE = "--- Armour ---";
MENU_ITEMS_TITLE = "--- Items ---";
MENU_RESETOPTIONS_TITLE = "--- Reset Options ---";
// Menu Section Headers
MENU_SPAWNOPTIONS = "Spawn Options";
MENU_WEPSPAWNOPTIONS = "Weapon Spawn Options";
MENU_MAGSPAWNOPTIONS = "Magazine Spawn Options";
MENU_PERSISTENCYOPTIONS = "Spawn Persistence Options";
MENU_RESETOPTIONS = "Reset Options";
MENU_RESETALLOPTIONS = "Reset all Options";
// Menu Static Text
MENU_SPAWNRATE_TEXT1 = "Setting 'spawn rate' to Replace All will suppress";
MENU_SPAWNRATE_TEXT2 = "spawns of that given type.";
MENU_PERSISTENCY_TEXT = "Control whether replacements happen after a mapload:";
// Menu Option Labels
MENU_NOTICE = "Notice:";
MENU_BACKPACKSALLOWED = "Allowed in Ammo Boxes and/or Backpacks: ";
MENU_SPAWNRATE = "Spawn Rate: ";
MENU_WEPSPAWNRATE = "Weapon Spawn Rate: ";
MENU_MAGSPAWNRATE = "Magazine Spawn Rate: ";
MENU_PERSISTENCY = "Persistent Spawns: ";
MENU_WEPPERSISTENCY = "Persistent Weapon Spawns: ";
MENU_MAGPERSISTENCY = "Persistent Magazine Spawns: ";
// Menu Option Values
MENU_ENABLED = "Enabled";
MENU_DISABLED = "Disabled";
MENU_REPLACEALL = "Replace All";
MENU_WITHALL = "With All";
// Menu Command Text
MENU_RESETWEP = "Reset Weapon Options";
MENU_RESETMAG = "Reset Magazine Options";
MENU_RESETPERSISTENCY = "Reset Persistence Options";
ACE_RESETALLOPTIONS = "Reset all options for AceCorp: Engineering Dept.";
// Blackhawk Options Text
MENU_BLACKHAWK_TITLE = "------ 'Blackhawk' Hi-Tech Crossbow Options ------";
MENU_BLACKHAWK_LAUNCHER_SPAWNTEXT = "Control the spawn rate of the blackhawk on Rocket Launchers:";
MENU_BLACKHAWK_BACKPACKS = "Control whether the Blackhawk spawns in Backpacks:";
MENU_BOLTBUNDLE_SPAWNOPTIONS = "Bolt Bundle Spawn Options";
MENU_BOLTBUNDLE_ROCKET_SPAWNTEXT = "Control the spawn rate of the bolt bundles on Rockets:";
MENU_BOLTBUNDLE_BACKPACKS = "Control whether bolt bundles spawn in Backpacks:";
MENU_BOLTBUNDLE_SPAWNRATE = "Bolt Bundle Spawn Rate: ";
MENU_BOLTBUNDLE_PERSISTENCY = "Persistent Bolt Bundle Spawns: ";
MENU_RESETBOLTBUNDLE = "Reset Bolt Bundle Options";
MENU_BLACKHAWK_INVERT = "Invert Bolt Selection Order";
// Blackjack Options Text
MENU_BLACKJACK_TITLE = "------ 'Blackjack' .355 Rifle Options ------";
MENU_BLACKJACK_CLIPBOX_SPAWNTEXT = "Control the spawn rate of the blackjack on Clip Boxes:";
MENU_BLACKJACK_HUNTER_SPAWNTEXT = "Control the spawn rate of the blackjack on Hunter Shotguns:";
MENU_BLACKJACK_SLAYER_SPAWNTEXT = "Control the spawn rate of the blackjack on Slayer Shotguns:";
MENU_BLACKJACK_BACKPACKS = "Control whether the Blackjack spawns in Backpacks:";
MENU_BLACKJACKMAG_355_CLIPMAG_SPAWNTEXT = "Control the spawn rate of the .355 Magazines on Clip Magazines:";
MENU_BLACKJACKMAG_355_BACKPACKS = "Control whether .355 Magazines spawn in Backpacks:";
MENU_BLACKJACKMAG_SHELL_SHELL_SPAWNTEXT = "Control the spawn rate of the 12ga Shell Magazines on Shell Pickups:";
MENU_BLACKJACKMAG_SHELL_BACKPACKS = "Control whether Shell Magazines spawn in Backpacks:";
MENU_BLACKJACKMAG_355_PERSISTENCY = "Persistent .355 Magazine Spawns: ";
MENU_BLACKJACKMAG_SHELL_PERSISTENCY = "Persistent Shell Magazine Spawns: ";
MENU_BLACKJACK_INVERT = "Invert Primary/Secondary Fire & Reloads";
// Gungnir Options Text
MENU_GUNGNIR_TITLE = "------ 'Gungnir' Frag Beam Rifle Options ------";
MENU_GUNGNIR_BFG_SPAWNTEXT = "Control the spawn rate of the Gungnir on BFG-9000s:";
MENU_GUNGNIR_BACKPACKS = "Control whether the Gungnir spawns in Backpacks:";
// Hammerhead Options Text
MENU_HAMMERHEAD_TITLE = "------ CIR-37 'Hammerhead' Plasma Minigun Options ------";
MENU_HAMMERHEAD_CHAINGUN_SPAWNTEXT = "Control the spawn rate of the Hammerhead on Vulcanettes:";
MENU_HAMMERHEAD_PLASMA_SPAWNTEXT = "Control the spawn rate of the Hammerhead on Thunderbusters:";
MENU_HAMMERHEAD_BACKPACKS = "Control whether the Hammerhead spawns in Backpacks:";
// Jackdaw Options Text
MENU_JACKDAW_TITLE = "------ 'Jackdaw' 9mm SMG Options ------";
MENU_JACKDAW_CLIPBOX_SPAWNTEXT = "Control the spawn rate of the jackdaw on Clip Boxes:";
MENU_JACKDAW_BACKPACKS = "Control whether the Jackdaw spawns in Backpacks:";
// Majestic Options Text
MENU_MAJESTIC_TITLE = "------ 'Majestic' .500 S&W Magnum Railgun Options ------";
MENU_MAJESTIC_PISTOL_SPAWNTEXT = "Control the spawn rate of the Majestic on Pistols:";
MENU_MAJESTIC_HUNTER_SPAWNTEXT = "Control the spawn rate of the Majestic on Hunter Shotguns:";
MENU_MAJESTIC_SLAYER_SPAWNTEXT = "Control the spawn rate of the Majestic on Slayer Shotguns:";
MENU_MAJESTIC_BACKPACKS = "Control whether the Majestic spawns in Backpacks:";
MENU_MAJESTICMAG_CLIPMAG_SPAWNTEXT = "Control the spawn rate of Majestic Cylinders on Clip Magazines:";
MENU_MAJESTICMAG_BACKPACKS = "Control whether Majestic Cylinders spawn in Backpacks:";
MENU_MAJESTICMAG_PERSISTENCY = "Persistent Cylinder Spawns: ";
// Redline Options Text
MENU_REDLINE_TITLE = "------ RDL-N3 'Redline' Thermal Lance Options ------";
MENU_REDLINE_PLASMA_SPAWNTEXT = "Control the spawn rate of the Redline on Thunderbusters:";
MENU_REDLINE_BACKPACKS = "Control whether the Redline spawns in Backpacks:";
// Scorpion Options Text
MENU_SCORPION_TITLE = "------ 'Scorpion' 35mm Sniper Cannon Options ------";
MENU_SCORPION_BFG_SPAWNTEXT = "Control the spawn rate of the Scorpion on BFG-9000s:";
MENU_SCORPION_BACKPACKS = "Control whether the Scorpion spawns in Backpacks:";
// Viper Options Text
MENU_VIPER_TITLE = "------ 'Viper' .50 cal. Handgun Options ------";
MENU_VIPER_PISTOL_SPAWNTEXT = "Control the spawn rate of the Viper on Pistols:";
MENU_VIPER_HUNTER_SPAWNTEXT = "Control the spawn rate of the Viper on Hunter Shotguns:";
MENU_VIPER_SLAYER_SPAWNTEXT = "Control the spawn rate of the Viper on Slayer Shotguns:";
MENU_VIPER_BACKPACKS = "Control whether the Viper spawns in Backpacks:";
MENU_VIPERMAG_CLIPMAG_SPAWNTEXT = "Control the spawn rate of Viper Magazines on Clip Magazines:";
MENU_VIPERMAG_BACKPACKS = "Control whether Viper Magazines spawn in Backpacks:";
// Wyvern Options Text
MENU_WYVERN_TITLE = "------ 'Wyvern' .50 cal. Double-Barrel Rifle Options ------";
MENU_WYVERN_HUNTER_SPAWNTEXT = "Control the spawn rate of the Wyvern on Hunter Shotguns:";
MENU_WYVERN_SLAYER_SPAWNTEXT = "Control the spawn rate of the Wyvern on Slayer Shotguns:";
MENU_WYVERN_PLASMA_SPAWNTEXT = "Control the spawn rate of the Wyvern on Thunderbusters:";
MENU_WYVERN_BACKPACKS = "Control whether the Wyvern spawns in Backpacks:";
// Ladder Launcher Options Text
MENU_LADDERLAUNCHER_TITLE = "------ Ladder Launcher Options ------";
MENU_LADLAUNCHER_ROCKETBOX_SPAWNTEXT = "Control the spawn rate of the Ladder Launcher on Rocket Boxes:";
MENU_LADLAUNCHER_CELLPACK_SPAWNTEXT = "Control the spawn rate of the Ladder Launcher on Cellpacks:";
MENU_LADLAUNCHER_BACKPACKS = "Control whether the Ladder Launcher spawns in Backpacks:";
// Personal Shield Generator Options Text
MENU_PSG_TITLE = "------ Personal Shield Generator Options ------";
MENU_PSG_BLUEARMOR_SPAWNTEXT = "Control the spawn rate of the Personal Shield Generator on Battle Armor:";
MENU_PSG_BACKPACKS = "Control whether the Personal Shield Generator spawns in Backpacks:";
// Secret Finder Options Text
MENU_SECRETFINDER_TITLE = "------ Secret Finder Options ------";
MENU_SECRETFINDER_MAP_SPAWNTEXT = "Control the spawn rate of the Secret Finder on automaps:";
MENU_SECRETFINDER_BACKPACKS = "Control whether the Secret Finder spawns in Backpacks:";
// Super Stim Options Text
MENU_SUPERSTIM_TITLE = "------ Super Stimpack Options ------";
MENU_SUPERSTIM_STIMPACK_SPAWNTEXT = "Control the spawn rate of the Super Stimpack on Stimpacks:";
MENU_SUPERSTIM_BACKPACKS = "Control whether the Super Stimpack spawns in Backpacks:";
// Field Assembly Kit Options Text
MENU_FAK_TITLE = "------ Field Assembly Kit Options ------";
MENU_FAK_BACKPACKS = "Control whether the Field Assembly Kit spawns in Backpacks:";
MENU_FAK_GIVECORE_MAPEND = "Reward players with an Assembly Core if all secrets are found and at least 90% of monsters are kiled.";
MENU_FAK_COREREFUND_RATIO = "Ratio of number of cores to give when downgrading equipment";
// Booster Jets Options Text
MENU_BOOSTERJET_TITLE = "------ Booster Jets Options ------";
MENU_BOOSTERJET_BACKPACKS = "Control whether the Booster Jets spawns in Backpacks:";
// Dimensional Storage Device Options Text
MENU_DSD_TITLE = "------ Dimensional Storage Device Options ------";
MENU_DSD_BACKPACK_SPAWNTEXT = "Control the spawn rate of the Dimensional Storage Device on Backpacks:";
MENU_DSD_BACKPACKS = "Control whether the Dimensional Storage Device spawns in Backpacks:";
// Rearview Mirror Options Text
MENU_REARVIEWMIRROR_TITLE = "------ Rearview Mirror Options ------";
MENU_REARVIEWMIRROR_BACKPACKS = "Control whether the Rearview Mirror spawns in Backpacks:";
// Roomba Options Text
MENU_ROOMBA_TITLE = "------ Roomba Options ------";
MENU_ROOMBA_BACKPACKS = "Control whether the Roomba spawns in Backpacks:";
// Supply Beacon Options Text
MENU_SUPPLYBEACON_TITLE = "------ Supply Beacon Options ------";
MENU_SUPPLYBEACON_BACKPACKS = "Control whether the Supply Beacon spawns in Backpacks:";
// Portable Teleporter Options Text
MENU_TELEPORTER_TITLE = "------ Portable Teleporter Options ------";
MENU_TELEPORTER_BACKPACKS = "Control whether the Portable Teleporter spawns in Backpacks:";
// Soul Cube Options Text
MENU_SOULCUBE_TITLE = "------ Soul Cube Options ------";
MENU_SOULCUBE_CHAINSAW_SPAWNTEXT = "Control the spawn rate of the Soul Cube on Chainsaws:";
MENU_SOULCUBE_BACKPACKS = "Control whether the Soul Cube spawns in Backpacks:";
// Weapon Crate Options Text
MENU_WEAPONCRATE_TITLE = "------ Weapon Crate Options ------";
MENU_WEAPONCRATE_LAUNCHER_SPAWNTEXT = "Control the spawn rate of the Weapon Crate on Rocket Launchers:";
// Deployable Barricade Options Text
MENU_BARRICADE_TITLE = "------ Deployable Barricade Options ------";
MENU_BARRICADE_LAUNCHER_SPAWNTEXT = "Control the spawn rate of the Deployable Barricade on Rocket Launchers:";
// Magazine Reloader Options Text
MENU_MAGRELOADER_TITLE = "------ Magazine Reloader Options ------";
MENU_MAGRELOADER_BACKPACKS = "Control whether the Magazine Reloader spawns in Backpacks:";
// Hacked Reloader Options Text
MENU_HRL_TITLE = "------ Hacked Reloader Options ------";
MENU_HRL_BACKPACKS = "Control whether the Hacked Reloader spawns in Backpacks:";
// Armor Patch Kit Options Text
MENU_APK_TITLE = "------ Armor Patch Kit Options ------";
MENU_APK_BACKPACKS = "Control whether the Armor Patch Kit spawns in Backpacks:";
// Item Tags
TAG_BLACKHAWK = "'Blackhawk' Hi-Tech Crossbow";
TAG_BLACKHAWKBOLT = "Regular Bolt";
TAG_BLACKHAWKBOLT_E = "Electric Bolt";
TAG_BLACKHAWKBOLT_I = "Incendiary Bolt";
TAG_BLACKHAWKBOLT_N = "Nuclear Bolt";
TAG_BLACKJACK = "'Blackjack' .355 Rifle";
TAG_BLACKJACKMAG_355 = "Blackjack .355 Magazine";
TAG_BLACKJACKMAG_SHELL = "Blackjack Shell Magazine";
TAG_GUNGNIR = "'Gungnir' Frag Beam Rifle";
TAG_HAMMERHEAD = "CIR-37 'Hammerhead' Plasma Minigun";
TAG_JACKDAW = "'Jackdaw' 9mm SMG";
TAG_MAJESTIC = "'Majestic' .500 S&W Magnum Railgun";
TAG_MAJESTICMAG = "'Majestic' Cylinder";
TAG_REDLINE = "RDL-N3 'Redline' Thermal Lance";
TAG_SCORPION = "'Scorpion' 35mm Sniper Cannon";
TAG_VIPER = "'Viper' .50 cal. Handgun";
TAG_VIPERMAG = ".50 AM 'Viper' Magazine";
TAG_WYVERN = "'Wyvern' .50 cal. Double-Barrel Rifle";
TAG_HACKEDRELOADER = "7.76mm Hacked Reloading Device";
TAG_LADDERLAUNCHER = "Ladder launcher";
TAG_MAGAZINERELOADER = "Magazine reloading device";
TAG_PSH = "Personal Shield Generator";
TAG_DEPLOYABLEBARRICADE = "Deployable barricade";
TAG_BOOSTERJETS = "Booster Jets";
TAG_DSD = "Dimensional Storage Device";
TAG_FAK = "Field assembly kit";
TAG_ASSEMBLYCORE = "Assembly Core";
TAG_REARVIEWMIRROR = "Rearview mirror";
TAG_ROOMBA = "Roomba";
TAG_SECRETFINDER = "Secret finder";
TAG_SOULCUBE = "Soul Cube";
TAG_SUPERSTIM = "Super stimpack";
TAG_SUPPLYBEACON = "Supply Beacon";
TAG_TELEPORTER = "Portable teleporter";
// i don't think this is used but i don't fuckin care!!!!!!!!!!!!!!!!!! - [ted]
TAG_WEAPONCRATE = "Weapon Crate";
TAG_ARMORPATCHKIT = "Armor Patch Kit";
// Obituaries
OB_BLACKHAWKBOLT = "%o was assassinated by %k's bolt.";
OB_BLACKHAWKBOLT_E = "%k helped %o make a shocking discovery - electricity can kill.";
OB_BLACKHAWKBOLT_I = "%o felt a little cold so %k warmed %h up.";
OB_BLACKHAWKBOLT_N = "%k split the atom too close in the vicinity of %o.";
OB_LADDERLAUNCHER = "%o took %k's ladder to Heaven.";
// Pickup Messages
PICKUP_BLACKHAWK_PREFIX = "You got the ";
PICKUP_BLACKHAWK_SUFFIX = ".";
PICKUP_BLACKHAWKBOLT_PREFIX = "You got an ";
PICKUP_BLACKHAWKBOLT_SUFFIX = ".";
PICKUP_BLACKHAWKBOLT_E_PREFIX = "You got an ";
PICKUP_BLACKHAWKBOLT_E_SUFFIX = ".";
PICKUP_BLACKHAWKBOLT_I_PREFIX = "You got an ";
PICKUP_BLACKHAWKBOLT_I_SUFFIX = ".";
PICKUP_BLACKHAWKBOLT_N_PREFIX = "You got a ";
PICKUP_BLACKHAWKBOLT_N_SUFFIX = ".";
PICKUP_BLACKJACK_PREFIX = "You got the ";
PICKUP_BLACKJACK_SUFFIX = ".";
PICKUP_BLACKJACKMAG_355_PREFIX = "You got a 25-round ";
PICKUP_BLACKJACKMAG_355_SUFFIX = ".";
PICKUP_BLACKJACKMAG_SHELL_PREFIX = "You got a 5-round ";
PICKUP_BLACKJACKMAG_SHELL_SUFFIX = ".";
PICKUP_GUNGNIR_PREFIX = "You got the ";
PICKUP_GUNGNIR_ACCELERATOR = "accelerated ";
PICKUP_GUNGNIR_CAPACITOR = "High-Capacity ";
PICKUP_GUNGNIR_PROCESSOR = " with a High-Efficiency processor";
PICKUP_GUNGNIR_SUFFIX = ".";
PICKUP_HAMMERHEAD_PREFIX = "You got the ";
PICKUP_HAMMERHEAD_SUFFIX = ".";
PICKUP_JACKDAW_PREFIX = "You got the ";
PICKUP_JACKDAW_RAPIDFIRE = "Rapid-Fire ";
PICKUP_JACKDAW_SUFFIX = ".";
PICKUP_MAJESTIC_PREFIX = "You got the ";
PICKUP_MAJESTIC_ACCELERATOR = "accelerated ";
PICKUP_MAJESTIC_SUFFIX = ".";
PICKUP_MAJESTICMAG_PREFIX = "You got a ";
PICKUP_MAJESTICMAG_SUFFIX = ".";
PICKUP_REDLINE_PREFIX = "You got the ";
PICKUP_REDLINE_LOCKON = "Lock-on ";
PICKUP_REDLINE_SUFFIX = ".";
PICKUP_SCORPION_PREFIX = "You got the ";
PICKUP_SCORPION_SUFFIX = ".";
PICKUP_VIPER_PREFIX = "You got the ";
PICKUP_VIPER_HEAVYFRAME = "Heavy-Framed ";
PICKUP_VIPER_EXTENDEDBARREL = "extended ";
PICKUP_VIPER_SUFFIX = ". Blast 'em.";
PICKUP_VIPERMAG_PREFIX = "You got a ";
PICKUP_VIPERMAG_SUFFIX = ".";
PICKUP_WYVERN_PREFIX = "You got the ";
PICKUP_WYVERN_AUTOLOADER = "Auto-loading ";
PICKUP_WYVERN_SUFFIX = ".";
PICKUP_LADDERLAUNCHER = "You got the ladder launcher!";
PICKUP_MAGRELOADER = "Picked up a magazine reloading device.";
PICKUP_DEPLOYABLEBARRICADE = "Picked up a deployable barricade.";
PICKUP_BOOSTERJETS = "Picked up the booster jets.";
PICKUP_DSD = "Picked up a Dimensional Storage Device(tm). For the hoard!";
PICKUP_FAK = "Picked up a field assembly kit.";
PICKUP_ASSEMBLYCORE = "Picked up an assembly core.";
PICKUP_REARVIEWMIRROR = "You picked up a rearview mirror. Lookin' good.";
PICKUP_ROOMBA = "Picked up a roomba.";
PICKUP_SECRETFINDER = "Picked up a secret finder. Go explore!";
PICKUP_SOULCUBE_BASE = "Picked up the soul cube.";
PICKUP_SOULCUBE_ARCHER = " You hear strange voices coming out of it. It is... speaking to you?";
PICKUP_SOULCUBE_THANKYOUCUOB = "\nEternal blues and spiritual armor will come to you if you say \"thank you cuob\".";
PICKUP_SUPERSTIM = "Picked up a super stimpack.";
PICKUP_SUPPLYBEACON = "Picked up a supply drop beacon.";
PICKUP_TELEPORTER = "Picked up a portable teleporter.";
SUPERSTIM_HELPTEXT = "\cd<<< \cjSUPER STIMPACK \cd>>>\c-\n\n\nSuper stimpacks give a rapid\nbut short boost to\nhealth regeneration.\n\n\Press altfire to use on someone else.\n\n\cgDO NOT OVERDOSE.";
DSD_TOP = "\c[DarkBrown][] [] [] \c[Cyan]Dimensional Storage Device \c[DarkBrown][] [] []";
DSD_INOPERABLE = "!!! INOPERABLE !!!";
DSD_OPERATIONSLEFT = "\c[Brown]Operations left: \c-";
DSD_TOOFULL = "Your storage is full.";
DSD_INBAG = "In Device: ";
DSD_INSERTREMOVE = "Insert/Remove: ";
DSD_SEARCHING = "Searching: ";
DSDWH_FMODPUD = " Adjust operation amount\n";
DSDWH_ENTER = " Search mode/apply search\n";
DSDWH_USEALTRELOAD = " Sort descending/ascending\n";
DSDWH_USERELOAD = " Load battery\n";
DSDWH_USEUNLOAD = " Remove battery";