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

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

Initial commit for Assembly Library.

File size: 1008 bytes
Line 
1; File name     :   StringsForDialogs.asm
2; Project name  :   Assembly Library
3; Created date  :   14.9.2010
4; Last update   :   16.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  " %2u min %2u 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  %4u %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.