1 | ; File name : StringsForDialogs.asm
|
---|
2 | ; Project name : Assembly Library
|
---|
3 | ; Created date : 14.9.2010
|
---|
4 | ; Last update : 23.10.2010
|
---|
5 | ; Author : Tomi Tilli
|
---|
6 | ; Description : Strings used by dialogs.
|
---|
7 |
|
---|
8 | ; Strings for Progress Dialog
|
---|
9 | g_szTimeElapsed: db "Time elapsed :",NULL
|
---|
10 | g_szTimeLeft: db "Estimated left:",NULL
|
---|
11 | g_szTimeFormat: db " %2-u min %2-u sec",LF,CR,NULL
|
---|
12 |
|
---|
13 | ; Strings for Drive Dialog
|
---|
14 | g_szDriveFormat: db "%c:",NULL
|
---|
15 |
|
---|
16 | ; Strings for File Dialog
|
---|
17 | g_szChangeDrive: db "F2 Change Drive",LF,CR,NULL
|
---|
18 | g_szSelectDirectory: db "F3 Select Current Directory",LF,CR,NULL
|
---|
19 | g_szCreateNew: db "F4 Input new File or Directory",NULL
|
---|
20 |
|
---|
21 | g_szSelectNewDrive:
|
---|
22 | db "Select new drive.",NULL
|
---|
23 | g_szLoadingPleaseWait:
|
---|
24 | db "Loading. Please wait...",NULL
|
---|
25 |
|
---|
26 | g_szEnterNewFileOrDirectory:
|
---|
27 | db "Enter name for new file or directory.",NULL
|
---|
28 |
|
---|
29 | FILE_STRING_LENGTH EQU (24+1) ; +1 = LF in directory contents string
|
---|
30 | g_szFileFormat:
|
---|
31 | db "%16S%4-u %c%cB",LF,NULL
|
---|
32 | g_szDirectoryFormat:
|
---|
33 | db "%16S%s-DIR",LF,NULL
|
---|
34 | g_szSub:
|
---|
35 | db ANGLE_QUOTE_RIGHT,"SUB",NULL
|
---|
36 | g_szUp:
|
---|
37 | db ANGLE_QUOTE_LEFT," UP",NULL
|
---|
38 |
|
---|
39 | g_szSingleItem: ; Used by Dialog.asm for single item line
|
---|
40 | g_szUpdir:
|
---|
41 | db ".."
|
---|
42 | g_szNull:
|
---|
43 | db NULL
|
---|