[41] | 1 | ; File name : StringsForDialogs.asm
|
---|
| 2 | ; Project name : Assembly Library
|
---|
| 3 | ; Created date : 14.9.2010
|
---|
[54] | 4 | ; Last update : 23.10.2010
|
---|
[41] | 5 | ; Author : Tomi Tilli
|
---|
| 6 | ; Description : Strings used by dialogs.
|
---|
| 7 |
|
---|
[376] | 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 |
|
---|
[41] | 24 | ; Strings for Progress Dialog
|
---|
| 25 | g_szTimeElapsed: db "Time elapsed :",NULL
|
---|
| 26 | g_szTimeLeft: db "Estimated left:",NULL
|
---|
[44] | 27 | g_szTimeFormat: db " %2-u min %2-u sec",LF,CR,NULL
|
---|
[41] | 28 |
|
---|
[54] | 29 | ; Strings for Drive Dialog
|
---|
| 30 | g_szDriveFormat: db "%c:",NULL
|
---|
| 31 |
|
---|
[41] | 32 | ; Strings for File Dialog
|
---|
| 33 | g_szChangeDrive: db "F2 Change Drive",LF,CR,NULL
|
---|
| 34 | g_szSelectDirectory: db "F3 Select Current Directory",LF,CR,NULL
|
---|
| 35 | g_szCreateNew: db "F4 Input new File or Directory",NULL
|
---|
| 36 |
|
---|
| 37 | g_szSelectNewDrive:
|
---|
| 38 | db "Select new drive.",NULL
|
---|
[54] | 39 | g_szLoadingPleaseWait:
|
---|
| 40 | db "Loading. Please wait...",NULL
|
---|
[41] | 41 |
|
---|
| 42 | g_szEnterNewFileOrDirectory:
|
---|
| 43 | db "Enter name for new file or directory.",NULL
|
---|
| 44 |
|
---|
[46] | 45 | FILE_STRING_LENGTH EQU (24+1) ; +1 = LF in directory contents string
|
---|
[41] | 46 | g_szFileFormat:
|
---|
[46] | 47 | db "%16S%4-u %c%cB",LF,NULL
|
---|
[41] | 48 | g_szDirectoryFormat:
|
---|
[46] | 49 | db "%16S%s-DIR",LF,NULL
|
---|
[41] | 50 | g_szSub:
|
---|
| 51 | db ANGLE_QUOTE_RIGHT,"SUB",NULL
|
---|
| 52 | g_szUp:
|
---|
[46] | 53 | db ANGLE_QUOTE_LEFT," UP",NULL
|
---|
[41] | 54 |
|
---|
| 55 | g_szSingleItem: ; Used by Dialog.asm for single item line
|
---|
| 56 | g_szUpdir:
|
---|
| 57 | db ".."
|
---|
| 58 | g_szNull:
|
---|
| 59 | db NULL
|
---|