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