source: xtideuniversalbios/tags/v2.0.0_beta_3/Assembly_Library/Src/Menu/Dialog/StringsForDialogs.asm@ 514

Last change on this file since 514 was 376, checked in by gregli@…, 12 years ago

WIDE checkin... Added copyright and license information to sorce files, as per the GPL instructions for usage.

File size: 1.9 KB
Line 
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;
9; XTIDE Universal BIOS and Associated Tools
10; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
11;
12; This program is free software; you can redistribute it and/or modify
13; it under the terms of the GNU General Public License as published by
14; the Free Software Foundation; either version 2 of the License, or
15; (at your option) any later version.
16;
17; This program is distributed in the hope that it will be useful,
18; but WITHOUT ANY WARRANTY; without even the implied warranty of
19; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20; GNU General Public License for more details.
21; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22;
23
24; Strings for Progress Dialog
25g_szTimeElapsed: db "Time elapsed :",NULL
26g_szTimeLeft: db "Estimated left:",NULL
27g_szTimeFormat: db " %2-u min %2-u sec",LF,CR,NULL
28
29; Strings for Drive Dialog
30g_szDriveFormat: db "%c:",NULL
31
32; Strings for File Dialog
33g_szChangeDrive: db "F2 Change Drive",LF,CR,NULL
34g_szSelectDirectory: db "F3 Select Current Directory",LF,CR,NULL
35g_szCreateNew: db "F4 Input new File or Directory",NULL
36
37g_szSelectNewDrive:
38 db "Select new drive.",NULL
39g_szLoadingPleaseWait:
40 db "Loading. Please wait...",NULL
41
42g_szEnterNewFileOrDirectory:
43 db "Enter name for new file or directory.",NULL
44
45FILE_STRING_LENGTH EQU (24+1) ; +1 = LF in directory contents string
46g_szFileFormat:
47 db "%16S%4-u %c%cB",LF,NULL
48g_szDirectoryFormat:
49 db "%16S%s-DIR",LF,NULL
50g_szSub:
51 db ANGLE_QUOTE_RIGHT,"SUB",NULL
52g_szUp:
53 db ANGLE_QUOTE_LEFT," UP",NULL
54
55g_szSingleItem: ; Used by Dialog.asm for single item line
56g_szUpdir:
57 db ".."
58g_szNull:
59 db NULL
Note: See TracBrowser for help on using the repository browser.