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

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

Changes to Assembly Library:
Sorting now works (pivot item is copied for comparison and index comparisons are now signed instead of unsigned).
Menu shadow now looks better on black and white modes.
Sorting is now implemented for File Fialog: directories are displayed before files.
File Dialog now displays directories with upper case letters and files with lower case letters.
Line splitter now removes all empty lines from the end.

File size: 1.1 KB
Line 
1; File name     :   StringsForDialogs.asm
2; Project name  :   Assembly Library
3; Created date  :   14.9.2010
4; Last update   :   1.10.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
24FILE_STRING_LENGTH      EQU     (24+1)  ; +1 = LF in directory contents string
25g_szFileFormat:
26    db      "%16S%4-u %c%cB",LF,NULL
27g_szDirectoryFormat:
28    db      "%16S%s-DIR",LF,NULL
29g_szSub:
30    db      ANGLE_QUOTE_RIGHT,"SUB",NULL
31g_szUp:
32    db      ANGLE_QUOTE_LEFT," UP",NULL
33
34g_szSingleItem:         ; Used by Dialog.asm for single item line
35g_szUpdir:
36    db      ".."
37g_szNull:
38    db      NULL
Note: See TracBrowser for help on using the repository browser.