source: xtideuniversalbios/trunk/Assembly_Library/Src/Menu/Dialog/StringsForDialogs.asm @ 44

Last change on this file since 44 was 44, checked in by aitotat, 14 years ago

Spaces can now be generated before format specifier when printing formatted string.
Background character and attribute can now be easily specified before compiling.

File size: 1011 bytes
Line 
1; File name     :   StringsForDialogs.asm
2; Project name  :   Assembly Library
3; Created date  :   14.9.2010
4; Last update   :   27.9.2010
5; Author        :   Tomi Tilli
6; Description   :   Strings used by dialogs.
7
8; Strings for Progress Dialog
9g_szTimeElapsed:        db  "Time elapsed  :",NULL
10g_szTimeLeft:           db  "Estimated left:",NULL
11g_szTimeFormat:         db  " %2-u min %2-u sec",LF,CR,NULL
12
13; Strings for File Dialog
14g_szChangeDrive:        db  "F2 Change Drive",LF,CR,NULL
15g_szSelectDirectory:    db  "F3 Select Current Directory",LF,CR,NULL
16g_szCreateNew:          db  "F4 Input new File or Directory",NULL
17
18g_szSelectNewDrive:
19    db      "Select new drive.",NULL
20
21g_szEnterNewFileOrDirectory:
22    db      "Enter name for new file or directory.",NULL
23
24g_szFileFormat:
25    db      "%14S  %4-u %c%cB",LF,NULL
26g_szDirectoryFormat:
27    db      "[%12S]  %s-DIR",LF,NULL
28g_szSub:
29    db      ANGLE_QUOTE_RIGHT,"SUB",NULL
30g_szUp:
31    db      ANGLE_QUOTE_LEFT,"UP",NULL
32
33g_szSingleItem:         ; Used by Dialog.asm for single item line
34g_szUpdir:
35    db      ".."
36g_szNull:
37    db      NULL
Note: See TracBrowser for help on using the repository browser.