-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrident.cd
846 lines (845 loc) · 21 KB
/
trident.cd
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
MSG_APP_TITLE (//)
Trident
;
MSG_APP_VERSION (//)
4.3 (27-May-09)
;
MSG_APP_DESC (//)
Poseidon USB Stack GUI
;
MSG_MENU_PROJECT (//)
Project
;
MSG_MENU_ABOUT (//)
About...
;
MSG_MENU_ABOUTMUI (//)
About MUI...
;
MSG_MENU_HELP (//)
Help
;
MSG_MENU_ONLINE (//)
Online
;
MSG_MENU_SC_ONLINE (//)
O
;
MSG_MENU_OFFLINE (//)
Offline
;
MSG_MENU_SC_OFFLINE (//)
F
;
MSG_MENU_ICONIFY (//)
Iconify
;
MSG_MENU_SC_ICONIFY (//)
H
;
MSG_MENU_QUIT (//)
Quit
;
MSG_MENU_SC_QUIT (//)
Q
;
MSG_MENU_INFO (//)
Information
;
MSG_MENU_SAVELOG (//)
Save error log...
;
MSG_MENU_FLUSH(//)
Flush errors
;
MSG_MENU_SAVEDEV (//)
Save device list...
;
MSG_MENU_SETTINGS (//)
Settings
;
MSG_MENU_LOAD (//)
Load...
;
MSG_MENU_SC_LOAD (//)
L
;
MSG_MENU_SAVE (//)
Save
;
MSG_MENU_SC_SAVE (//)
S
;
MSG_MENU_SAVEAS (//)
Save as...
;
MSG_MENU_SC_SAVEAS (//)
A
;
MSG_MENU_MUISETTINGS (//)
MUI Settings
;
MSG_MENU_SC_MUISETTINGS (//)
M
;
MSG_WINDOW_TITLE (//)
Trident 4.3
;
MSG_MAINPANEL_GENERAL (//)
General
;
MSG_MAINPANEL_CONTROLLERS (//)
Controllers
;
MSG_MAINPANEL_DEVICES (//)
Devices
;
MSG_MAINPANEL_CLASSES (//)
Classes
;
MSG_MAINPANEL_OPTIONS (//)
Options
;
MSG_MAINPANEL_POPUPS (//)
Popups
;
MSG_MAINPANEL_CONFIG (//)
Config
;
MSG_ERRLVL_ALL (//)
All messages
;
MSG_ERRLVL_WARNINGS (//)
Warning and worse
;
MSG_ERRLVL_ERRORS (//)
Errors and failures
;
MSG_ERRLVL_FAILURES (//)
Failures only
;
MSG_POPUP_NEVER (//)
Never open a popup window! Bah!
;
MSG_POPUP_ERROR (//)
Only popup on an error condition
;
MSG_POPUP_UNKNOWN (//)
Popup on new, unknown devices
;
MSG_POPUP_NOBINDING (//)
Popup, if there is no binding
;
MSG_POPUP_NOCONFIG (//)
Popup, if there is no config yet
;
MSG_POPUP_CONFIGCLASS (//)
Popup on configurable class
;
MSG_POPUP_BINDING (//)
Popup, regardless of binding
;
MSG_POPUP_ALWAYS (//)
Always immediately annoy me
;
MSG_PANEL_GENERAL_LABEL1 (//)
\33cTrident V4.3 Graphical User Interface
;
MSG_PANEL_GENERAL_LABEL2 (//)
\33cfor the Poseidon USB Stack
;
MSG_PANEL_GENERAL_LABEL3 (//)
\33cCopyright \xa92002-2009 Chris Hodges
;
MSG_PANEL_GENERAL_LABEL4 (//)
\33cAll rights reserved.
;
MSG_PANEL_GENERAL_LABEL5 (//)
\33cMason Icons are\ncourtesy of Martin Merz.
;
MSG_PANEL_HARDWARE_LABEL1 (//)
\33c\33bUSB Hardware Controllers available
;
MSG_PANEL_HARDWARE_CONTROLLER_HELP (//)
This is the list of available hardware controllers.\nSeveral different controllers can be in the system at\nthe same time.\nTo add an entry, use the 'New' gadget at the bottom.\nYou need to manually set an hardware controller online\nthe first time you add the device.
;
MSG_PANEL_HARDWARE_COLS_NAME (//)
\33uName
;
MSG_PANEL_HARDWARE_COLS_UNIT (//)
\33uUnit
;
MSG_PANEL_HARDWARE_COLS_ONLINE (//)
\33uOnline
;
MSG_PANEL_HARDWARE_COLS_PRODUCT (//)
\33uProduct
;
MSG_PANEL_HARDWARE_ONLINE_YES (//)
Yes
;
MSG_PANEL_HARDWARE_ONLINE_NO (//)
No
;
MSG_PANEL_HARDWARE_UNKNOWN (//)
\33iunknown until online
;
MSG_PANEL_HARDWARE_LABEL2 (//)
Device:
;
MSG_PANEL_HARDWARE_DEVICE_HELP (//)
Give the name of the controller device\ndriver in this field. These devices are\nnormally stored in DEVS:USBHardware.
;
MSG_PANEL_HARDWARE_SELECT (//)
Select USBHardware device...
;
MSG_PANEL_HARDWARE_UNIT (//)
Unit:
;
MSG_PANEL_HARDWARE_UNIT_HELP (//)
If there are multiple cards of the\nsame kind in your machine, enter\nthe unit number of the board here.
;
MSG_PANEL_HARDWARE_DRIVER_NEW (//)
\33c New
;
MSG_PANEL_HARDWARE_DRIVER_NEW_HELP (//)
Click here to create a\nnew hardware driver entry.
;
MSG_PANEL_HARDWARE_DRIVER_COPY (//)
\33c Copy
;
MSG_PANEL_HARDWARE_DRIVER_COPY_HELP (//)
Click here to copy the selected\nhardware driver entry.
;
MSG_PANEL_HARDWARE_DRIVER_DELETE (//)
\33c Delete
;
MSG_PANEL_HARDWARE_DRIVER_DELETE_HELP (//)
Click here to remove the selected entry.\nThe hardware will automatically go offline,\ntaking all its connected devices down.
;
MSG_PANEL_HARDWARE_DRIVER_ONLINE (//)
\33c Online
;
MSG_PANEL_HARDWARE_DRIVER_ONLINE_HELP (//)
Click here to activate an\nindividual hardware driver.
;
MSG_PANEL_HARDWARE_DRIVER_OFFLINE (//)
\33c Offline
;
MSG_PANEL_HARDWARE_DRIVER_OFFLINE_HELP (//)
Click here to deactivate an\nindividual hardware driver.
;
MSG_PANEL_HARDWARE_DRIVER_INFO (//)
\33c Info
;
MSG_PANEL_HARDWARE_DRIVER_INFO_HELP (//)
To get information on the device driver,\nclick here. The device needs to be online\nfor the information to be available.
;
MSG_PANEL_DEVICES_LABEL (//)
\33c\33bUSB Devices in the system
;
MSG_PANEL_DEVICES_HELP (//)
This is the list of USB devices (functions)\ncurrently in the system. It also shows the\ncurrently existing device or interface bindings.
;
MSG_PANEL_DEVICES_COLS_NAME (//)
\33uName
;
MSG_PANEL_DEVICES_COLS_SPEED (//)
\33uSpeed
;
MSG_PANEL_DEVICES_COLS_STATE (//)
\33uState
;
MSG_PANEL_DEVICES_COLS_CLASS (//)
\33uClass
;
MSG_PANEL_DEVICES_COLS_BINDINGS (//)
\33uBindings
;
MSG_PANEL_DEVICES_SCAN (//)
\33c Class Scan
;
MSG_PANEL_DEVICES_SCAN_HELP (//)
Clicking on this button will start a class scan. This means that\neach device will be examined if it matches some of the standard\nclasses in the system. In this case, a binding will be established\nand the functionality will be added to the system automatically.\n
;
MSG_PANEL_DEVICES_UNBIND (//)
\33c Unbind
;
MSG_PANEL_DEVICES_UNBIND_HELP (//)
Manually removes a binding. This can be\nuseful to temporarily deactivate a device.\nUse 'Class Scan' to reactivate the binding.
;
MSG_PANEL_DEVICES_INFO (//)
\33c Information
;
MSG_PANEL_DEVICES_INFO_HELP (//)
Opens a detailed information window.\nJust try it, nothing can go wrong.
;
MSG_PANEL_DEVICES_SETTINGS (//)
\33c Settings
;
MSG_PANEL_DEVICES_SETTINGS_HELP (//)
If there is a device binding and the class\nsupports a configuration GUI, clicking on this\nbutton will open the preferences window.\n\nNote well, that the corresponding button for the\ninterface binding settings can be found inside\nthe information window.
;
MSG_PANEL_DEVICES_SUSPEND (//)
\33c Suspend
;
MSG_PANEL_DEVICES_SUSPEND_HELP (//)
Sends device into power saving suspend mode.\nIf a class binding does not support suspend,\nthis button will do nothing.
;
MSG_PANEL_DEVICES_RESUME (//)
\33c Resume
;
MSG_PANEL_DEVICES_RESUME_HELP (//)
Resumes the device to full operation after\nit was placed into suspend mode.\n
;
MSG_PANEL_DEVICES_POWERCYCLE (//)
\33c Powercycle
;
MSG_PANEL_DEVICES_POWERCYCLE_HELP (//)
Power cycles the hub port and re-enumerates\ndevice. Comes handy to reactivate dead devices.\n
;
MSG_PANEL_DEVICES_DISABLE (//)
\33c Disable
;
MSG_PANEL_DEVICES_DISABLE_HELP (//)
Permanently powers off the port. It cannot be\nreactivated by unplugging/replugging the device.\n
;
MSG_POSEIDON_SHORTHELP (//)
Poseidon (his latin name Neptune) the god of the sea\nand its inhabitants, and one of the Olympians, the son\nof Cronus and Rhea, brother of Zeus, Hades, Demeter,\nHera, Hestia. He was married to Amphitrite, a Nereid,\nand had by her the son Triton, a merman. Like other\nOlympians, had many love affairs (e.g. with Medusa)\nand numerous children (e.g. Pegasos).
;
MSG_PANEL_CLASSES (//)
\33c\33bUSB Classes available
;
MSG_PANEL_CLASSES_HELP (//)
This is the list of USB classes available.\nEach class is a software driver for a group of\nUSB devices. Classes can be manually added using\nthe 'Add' button or automatically with 'Dir Scan'.
;
MSG_PANEL_CLASSES_COLS_NAME (//)
\33uName
;
MSG_PANEL_CLASSES_COLS_USE (//)
\33uUse#
;
MSG_PANEL_CLASSES_COLS_DESC (//)
\33uDescription
;
MSG_PANEL_CLASSES_LABEL (//)
Class library:
;
MSG_PANEL_CLASSES_LABEL_HELP (//)
To manually add an usb class driver,\nenter its name here and click on 'Add'.
;
MSG_PANEL_CLASSES_SELECT (//)
Select USB class library...
;
MSG_PANEL_CLASSES_ADD (//)
\33cAdd
;
MSG_PANEL_CLASSES_ADD_HELP (//)
To manually add an usb class\ndriver, enter its name above\nand click on this button.
;
MSG_PANEL_CLASSES_REMOVE (//)
\33c Remove
;
MSG_PANEL_CLASSES_REMOVE_HELP (//)
Click here to remove a class driver\nand all its current bindings.
;
MSG_PANEL_CLASSES_CONFIG (//)
\33c Configure
;
MSG_PANEL_CLASSES_CONFIG_HELP (//)
If a class driver supports some kind of\nconfiguration, click here and it will\nopen a configuration window of the class.
;
MSG_PANEL_CLASSES_SCAN (//)
\33c Dir Scan
;
MSG_PANEL_CLASSES_SCAN_HELP (//)
Automatically scans for class\ndrivers and\nadds all drivers found to the system.
;
MSG_PANEL_OPTIONS (//)
\33c\33bVarious Settings
;
MSG_PANEL_OPTIONS_STACK (//)
Stack Settings
;
MSG_PANEL_OPTIONS_PRIORITY (//)
SubTask priority:
;
MSG_PANEL_OPTIONS_PRIORITY_HELP (//)
Defines the task priority of all\nsubtasks started by Poseidon.
;
MSG_PANEL_OPTIONS_BOOT (//)
Boot delay:
;
MSG_PANEL_OPTIONS_BOOT_HELP (//)
If reset resident, this value defines,\nhow long Poseidon should wait for USB\ndevices to settle, allowing to boot from\nslow devices such as an USB CD drive.
;
MSG_PANEL_OPTIONS_BOOT_FORMAT (//)
%ld sec.
;
MSG_PANEL_OPTIONS_DISABLELOW (//)
Automatically disable hub port on low power conditions:
;
MSG_PANEL_OPTIONS_DISABLELOW_HELP (//)
If a low power condition is detected at a port,\nselecting this switch will automatically turn off\nthe device causing the low power condition.
;
MSG_PANEL_OPTIONS_DISABLEDEAD (//)
Automatically disable hub port, if device drops dead:
;
MSG_PANEL_OPTIONS_DISABLEDEAD_HELP (//)
If a device drops dead (transfer timeouts),\nand this switch is selected, then the hub port\nwill be disabled automatically to avoid unnecessary\nperformance penalties.
;
MSG_PANEL_OPTIONS_POWERCYCLE (//)
Automatically power cycle hub port, if device drops dead:
;
MSG_PANEL_OPTIONS_POWERCYCLE_HELP (//)
If a device drops dead (transfer timeouts),\nand this switch is selected, then the hub port\nwill be reset automatically to try to revive the\ndevice. However, this can lead to nasty infinity loops.
;
MSG_PANEL_OPTIONS_POWERSAVE (//)
Enable power-saving suspend mode:
;
MSG_PANEL_OPTIONS_POWERSAVE_HELP (//)
Devices will be placed into suspend mode after\na specified interval of inactivity.\nPower consumption goes down to less than 1mA.\nResuming of operation usually takes place within 25ms.
;
MSG_PANEL_OPTIONS_FORCESUSPEND (//)
Force suspend mode, even if not supported by class:
;
MSG_PANEL_OPTIONS_FORCESUSPEND_HELP (//)
Class drivers should support going into suspend\nmode. If they don't, enabling this switch will\nsimply release the binding prior to suspending.\nThis is only performed on remote wakeup devices,\notherwise the class wouldn't rebind automatically.
;
MSG_PANEL_OPTIONS_INACTIVITY (//)
Inactivity timeout for suspend:
;
MSG_PANEL_OPTIONS_INACTIVITY_HELP (//)
Timeout before trying to place a device into\npower saving suspend mode.
;
MSG_PANEL_OPTIONS_INACTIVITY_FORMAT (//)
%ld sec.
;
MSG_PANEL_OPTIONS_LOGGING (//)
Logging Options
;
MSG_PANEL_OPTIONS_LOGGING_LABEL (//)
Log info messages:
;
MSG_PANEL_OPTIONS_LOGGING_LABEL_HELP (//)
Toggles logging of normal\ninformation messages.
;
MSG_PANEL_OPTIONS_LOGGING_WARN (//)
Log warnings:
;
MSG_PANEL_OPTIONS_LOGGING_WARN_HELP (//)
Toggles logging of warnings.
;
MSG_PANEL_OPTIONS_LOGGING_ERR (//)
Log errors:
;
MSG_PANEL_OPTIONS_LOGGING_ERR_HELP (//)
Toggles logging of errors.
;
MSG_PANEL_OPTIONS_LOGGING_FAIL (//)
Log failures:
;
MSG_PANEL_OPTIONS_LOGGING_FAIL_HELP (//)
Toggles logging of failures.
;
MSG_PANEL_OPTIONS_MEMORY (//)
Memory allocated in Poseidon Pool:
;
MSG_PANEL_POPO (//)
\33c\33bPopup Settings
;
MSG_PANEL_POPO_LABEL (//)
Popup Window Options
;
MSG_PANEL_POPO_CONNECT (//)
On connecting:
;
MSG_PANEL_POPO_CONNECT_HELP (//)
Popup display behaviour on\nconnecting new USB devices
;
MSG_PANEL_POPO_DISCONNECT (//)
On disconnect:
;
MSG_PANEL_POPO_DISCONNECT_HELP (//)
Whether to popup a window\nif the device is removed.
;
MSG_PANEL_POPO_DEATH (//)
On device death:
;
MSG_PANEL_POPO_DEATH_HELP (//)
Open a requester, if device seems to be dead.
;
MSG_PANEL_POPO_DELAY (//)
Popup delay:
;
MSG_PANEL_POPO_DELAY_HELP (//)
How long should the requester be displayed\nbefore disappearing automatically.
;
MSG_PANEL_POPO_DELAY_FORMAT (//)
%ld sec.
;
MSG_PANEL_POPO_ACTIVATE (//)
Activate window:
;
MSG_PANEL_POPO_ACTIVATE_HELP (//)
Make the window active when opening.
;
MSG_PANEL_POPO_TOFRONT (//)
Pop to front:
;
MSG_PANEL_POPO_TOFRONT_HELP (//)
Pop window to front, if content changes.
;
MSG_PANEL_POPO_CONSOUND (//)
Connection sound:
;
MSG_PANEL_POPO_CONSOUND_HELP (//)
This sound will be replayed everytime\na device is connected to the bus.
;
MSG_PANEL_POPO_CONSOUND_SELECT (//)
Select a sound file to be replayed...
;
MSG_PANEL_POPO_DISCONSOUND (//)
Disconnect sound:
;
MSG_PANEL_POPO_DISCONSOUND_HELP (//)
This sound will be replayed everytime\na device is removed from the bus.
;
MSG_PANEL_POPO_DISCONSOUND_SELECT (//)
Select a sound file to be replayed...
;
MSG_PANEL_CONFIG (//)
\33c\33bConfiguration management (Use drag & drop)
;
MSG_PANEL_CONFIG_HELP (//)
In this box you can see all the preferences that are\nsaved along the prefs file in ENVARC:.\nYou can use this panel to delete or export prefs.\n\nUse drag & drop to copy or replace preferences.\n
;
MSG_PANEL_CONFIG_COLS_TYPE (//)
\33uType
;
MSG_PANEL_CONFIG_COLS_DESC (//)
\33uDescription
;
MSG_PANEL_CONFIG_COLS_OWNER (//)
\33uOwner
;
MSG_PANEL_CONFIG_COLS_SIZE (//)
\33uSize
;
MSG_PANEL_CONFIG_SAVEAS (//)
\33c Save as
;
MSG_PANEL_CONFIG_SAVEAS_HELP (//)
Save all the prefs under given name\nfor reloading it later.
;
MSG_PANEL_CONFIG_EXPORT (//)
\33c Export
;
MSG_PANEL_CONFIG_EXPORT_HELP (//)
Allows you to save a selected entry\nto reload it later.
;
MSG_PANEL_CONFIG_IMPORT (//)
\33c Import
;
MSG_PANEL_CONFIG_IMPORT_HELP (//)
Imports a previously saved piece of prefs.
;
MSG_PANEL_CONFIG_REMOVE (//)
\33c Remove
;
MSG_PANEL_CONFIG_REMOVE_HELP (//)
Deletes the selected prefs entry.
;
MSG_PANEL_CONFIG_MSGLOG (//)
Message Log
;
MSG_PANEL_CONFIG_INFLVL (//)
Information level:
;
MSG_PANEL_CONFIG_INFLVL_HELP (//)
This gadget determines the amount and\ntype of messages shown below.
;
MSG_PANEL_CONFIG_LOGSAVE (//)
\33c Save to disk
;
MSG_PANEL_CONFIG_LOGSAVE_HELP (//)
To generate a logfile of the errors,\ne.g. to send the information to me\nfor bug reporting or help.
;
MSG_PANEL_CONFIG_LOGFLUSH (//)
\33c Flush all
;
MSG_PANEL_CONFIG_LOGFLUSH_HELP (//)
Clicking on this button will remove all\nthe messages in the stack. There's no way\nto get them back.
;
MSG_PANEL_CONFIG_LOGHELP (//)
These are the messages of the Poseidon stack\ngenerated so far. If you want to clear this list\njust click on the 'Flush all messages' button.
;
MSG_PANEL_CONFIG_ALLONLINE (//)
\33c All Online
;
MSG_PANEL_CONFIG_ALLONLINE_HELP (//)
Start all USB hardware device drivers that\nhave been entered in the 'Hardware' panel.\nMoreover, the found devices will be checked\nfor possible bindings.
;
MSG_PANEL_CONFIG_ALLOFFLINE (//)
\33c All Offline
;
MSG_PANEL_CONFIG_ALLOFFLINE_HELP (//)
Using 'Offline' you can take down all the USB\nhardware device drivers.\nThis totally halts the stack.
;
MSG_PANEL_CONFIG_RESTART (//)
\33c Restart
;
MSG_PANEL_CONFIG_RESTART_HELP (//)
Clicking on 'Restart' will stop and restart\nall hardware device drivers.
;
MSG_PANEL_CONFIG_SAVE (//)
\33c Save
;
MSG_PANEL_CONFIG_SAVE_HELP (//)
To save your current prefs to disk, click\non this button. The configuration will be\nstored in both ENVARC: and\n ENV:.
;
MSG_PANEL_CONFIG_USE (//)
\33c Use
;
MSG_PANEL_CONFIG_USE_HELP (//)
To use, but not permanently save your prefs\nclick this button. The configuration will be\nstored in ENV:.
;
MSG_UNKNOWN (//)
unknown
;
MSG_HARDWARE_WINDOW (//)
Hardware driver information window
;
MSG_HARDWARE_WINDOW_HELP (//)
These fields show some general information\non the USB hardware driver.
;
MSG_HARDWARE_WINDOW_FRAME (//)
General USB hardware driver information
;
MSG_HARDWARE_WINDOW_LABEL (//)
Device:\nUnit:\nVersion:\nProduct:\nManufacturer:\nDescription:\nCopyright:
;
MSG_ACTION_SAVE_ERR (//)
Select file to save errors to...
;
MSG_ACTION_SAVE_ERR_FILE (//)
Errors.log
;
MSG_ACTION_ERR_SAVED (//)
Error log saved to file %s.
;
MSG_ACTION_ERR_SAVED_ERRWRITE (//)
Error opening file %s for writing.
;
MSG_ACTION_SAVE_DEV (//)
Select file to save device list to...
;
MSG_ACTION_SAVE_DEV_FILE (//)
DevList.log
;
MSG_ACTION_SAVE_DEV_ERREXE (//)
Error executing PsdDevLister
;
MSG_ACTION_DEV_SAVED (//)
DevLister saved to %s.
;
MSG_ACTION_PREFS_LOAD (//)
Select a Poseidon Prefs file...
;
MSG_ACTION_PREFS_LOADED (//)
Config loaded from %s.
;
MSG_ACTION_PREFS_SAVEAS (//)
Select file to save prefs to...
;
MSG_ACTION_PREFS_SAVED (//)
Configuration successfully saved to %s.
;
MSG_ACTION_PREFS_SAVEDERR (//)
Couldn't save config to %s.
;
MSG_ACTION_PREFS_NOTSAVED (//)
Config not saved!
;
MSG_ACTION_PREFS_SAVEDSUCCESS (//)
Configuration successfully saved.
;
MSG_ACTION_USEQUIT (//)
Use|Save|Cancel
;
MSG_ACTION_CONFIGCHANGED (//)
The current configuration has been changed\nand not been saved yet.
;
MSG_ACTION_SAVEQUIT (//)
Couldn't save config.
;
MSG_ACTION_DEV_FORCEBIND_NONE (//)
None
;
MSG_ACTION_DEV_FORCE_REQ (//)
I'm not dumb!|I'll reconsider
;
MSG_ACTION_DEV_FORCE_REQ_TXT (//)
You are about to establish a forced \33bdevice\33n\nbinding. This is not an interface binding. As\nmost people are not capable of reading the\nmanual and they cause more harm than good.\nPlease make sure you know, what you're doing\nand not breaking things (and then bugger me with\nsilly emails).
;
MSG_ACTION_DEV_FORCE (//)
Forcing device binding of %s to %s.
;
MSG_ACTION_DEV_FORCE_REMOVE (//)
Removed forced device binding of %s.
;
MSG_ACTION_CFG_REMOVE (//)
Remove|Cancel
;
MSG_ACTION_CFG_REMOVE_HELP (//)
You are about to \33bremove\33n the configuration\ndata related to the device with the ID\n\33b%s\33n.\nThis includes all individually saved class\nsetting for the device or interfaces, as well\nas the stuff Trident saves (such as custom name or\npopup inhibit).\n\nAre you sure you want to remove these prefs?
;
MSG_ACTION_CFG_REMOVE_DEFAULT (//)
You are about to \33bremove\33n the (default)\nconfiguration of the class \33b%s\33n.\nThis will set the classes initial prefs to the\ninternal defaults \33bon next boot\33n!\nIt does normally not affect the device or interface\nindividually saved settings.\n\nAre you sure you want to remove these prefs?
;
MSG_ACTION_CFG_REMOVE_CLASS (//)
You are about to \33bremove\33n the class\nconfiguration of the class \33b%s\33n,\nspecifically saved for device with ID\n\33b%s\33n.\n\nAre you sure you want to remove these prefs?
;
MSG_ACTION_CFG_REMOVE_CLASS_DEF (//)
You are about to \33bremove\33n the class\nconfiguration of the class \33b%s\33n\nsaved for the particular interface\n\33b%s\33n of the device with ID\n\33b%s\33n.\n\nAre you sure you want to remove these prefs?
;
MSG_ACTION_CFG_REMOVE_UNKNOWN (//)
Do you really want to remove this\n\33bunknown prefs data\33n from the preferences?
;
MSG_ACTION_MEMPOOL_FORMAT (//)
%ld KB
;
MSG_ACTION_CFG_EXPORT (//)
Select file to export prefs to...
;
MSG_ACTION_CFG_PREFS_FILE (//)
unknown.prefs
;
MSG_ACTION_STACKCFG_FILE (//)
stackcfg.prefs
;
MSG_ACTION_DEVICECFG_FILE (//)
devicecfg.prefs
;
MSG_ACTION_CLASSCFG_FILE (//)
classcfg.prefs
;
MSG_ACTION_DEVCFGDATA_FILE (//)
devclscfg.prefs
;
MSG_ACTION_IFCFGDATA_FILE (//)
ifclscfg.prefs
;
MSG_ACTION_CFG_FAIL (//)
Failed to open file %s.
;
MSG_ACTION_CFG_IMPORT (//)
Select file to import prefs from...
;
MSG_ACTION_CFGDATA_OOPS (//)
Oops!
;
MSG_ACTION_CFGDATA_OOPS_HELP (//)
To import device or interface\nprefs data, you need to select\nthe device entry where it should be added.
;
MSG_ACTION_CFGDATA_ERR (//)
I don't know that kind of prefs file.
;
MSG_ACTION_CFGDATA_ERR_READ (//)
Read error on loading prefs file %s.
;
MSG_ACTION_CFGDATA_ERR_ALLOC (//)
Failed to allocate buffer for loading %s.
;
MSG_ACTION_CFGDATA_ERR_IFF (//)
%s does not seem to be an iff file.
;
MSG_ACTION_CFGDATA_ERR_OPEN (//)
Failed to open file %s.
;
MSG_APPLYDRAGACTION_DEVICECFG (//)
Replace|Merge|Cancel
;
MSG_APPLYDRAGACTION_DEVICECFG_HELP (//)
Do you want to \33breplace\33n or \33bmerge\33n the prefs of\n\33b%s\33n\nwith the contents from\n\33b%s\33n?
;
MSG_APPLYDRAGACTION_DEVCFGDATA (//)
Add to device|Cancel
;
MSG_APPLYDRAGACTION_DEVCFGDATA_HELP (//)
Sorry, but only prefs of the same owner can\nbe replaced.\n\nDo you wish to add this prefs\nto the device instead?
;
MSG_APPLYDRAGACTION_DEVCFGDATA_REPLACE (//)
Replace|Cancel
;
MSG_APPLYDRAGACTION_DEVCFGDATA_REPLACE_HELP (//)
Do you want to \33breplace\33n the prefs of\n\33b%s\33n\nby those of\n\33b%s\33n?
;
MSG_APPLYDRAGACTION_DEVICECFG_REPLACE (//)
Replace|Cancel
;
MSG_APPLYDRAGACTION_DEVICECFG_REPLACE_HELP (//)
Do you want to \33breplace\33n the prefs of\n\33b%s\33n\nby the one in\n\33b%s\33n?
;
MSG_APPLYDRAGACTION_DEVICECFG_ADD (//)
Add|Cancel
;
MSG_APPLYDRAGACTION_DEVICECFG_ADD_HELP (//)
Do you want to \33badd\33n the prefs of\n\33b%s\33n\nto the device\n\33b%s\33n?
;
MSG_CFGLISTDISPATCHER_OOPS (//)
Oops!
;
MSG_CFGLISTDISPATCHER_OOPS_HELP (//)
Sorry, drag'n drop operation to\nthat target is not supported.
;
MSG_DEVICE_SPEED_LOW (//)
Low
;
MSG_DEVICE_SPEED_HIGH (//)
High
;
MSG_DEVICE_SPEED_FULL (//)
Full
;
MSG_DEVICE_SPEED_SUPER (//)
Super
;
MSG_DEVICE_STATE_SUSPENDED (//)
Suspended
;
MSG_DEVICE_STATE_DEAD (//)
Dead
;
MSG_DEVICE_STATE_DEADLP (//)
Dead \/ LP
;
MSG_DEVICE_STATE_LOWPOWER (//)
Low Power
;
MSG_DEVICE_STATE_CONFIGURED (//)
Running
;
MSG_DEVICE_STATE_DEVDESC (//)
DevDesc
;
MSG_DEVICE_STATE_HASADDRESS (//)
ValidAddr
;
MSG_DEVICE_STATE_CONNECTED (//)
Connected
;
MSG_LOGLEVEL_OK (//)
;
MSG_LOGLEVEL_WARNING (//)
Warning
;
MSG_LOGLEVEL_ERROR (//)
Error
;
MSG_LOGLEVEL_FAILURE (//)
Failure
;
MSG_LOGLEVEL_OTHER (//)
???
;