Changeset 592 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Strings.asm
- Timestamp:
- Jun 25, 2018, 10:29:27 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Strings.asm
r590 r592 42 42 g_szYes: db "Yes",NULL 43 43 44 ; Exitmessages44 ; General Yes/No response type dialog messages 45 45 g_szDlgExitToDos: db "Exit to DOS?",NULL 46 46 g_szDlgSaveChanges: db "Do you want to save changes to XTIDE Universal BIOS image file?",NULL 47 47 g_szDlgDriveNotReady: db "Drive not ready! Retry?",NULL 48 48 49 49 ; Generic dialog strings … … 92 92 g_szNfoMainFlash: db "Flash loaded BIOS image to EEPROM.",NULL 93 93 g_szNfoMainSave: db "Save BIOS changes back to original file from which it was loaded.",NULL 94 g_szNfoMainLicense: db "XTIDE Universal BIOS and XTIDECFG Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 6by XTIDE Universal BIOS Team."94 g_szNfoMainLicense: db "XTIDE Universal BIOS and XTIDECFG Copyright (C) 2009-2010 by Tomi Tilli, 2011-2018 by XTIDE Universal BIOS Team." 95 95 db " Released under GNU GPL v2, with ABSOLUTELY NO WARRANTY. Press ENTER for more details...",NULL 96 96 g_szNfoMainHomePage: db "Visit http://xtideuniversalbios.org (home page) and http://vcfed.org/forum (support)",NULL 97 97 98 98 g_szHelpMainLicense: db "XTIDE Universal BIOS and XTIDECFG Configuration program are Copyright 2009-2010 by Tomi Tilli," 99 db " 2011-201 6by XTIDE Universal BIOS Team. Released under GNU GPL v2. This software comes with ABSOLUTELY NO WARRANTY."99 db " 2011-2018 by XTIDE Universal BIOS Team. Released under GNU GPL v2. This software comes with ABSOLUTELY NO WARRANTY." 100 100 db " This is free software, and you are welcome to redistribute it under certain conditions." 101 101 db " See the LICENSE.TXT file that was included with this distribution," … … 423 423 g_szItemBootDrive: db "Default boot drive",NULL 424 424 g_szItemBootDispMode: db "Display Mode",NULL 425 g_szItemColorTheme: db "Color Theme",NULL 425 426 g_szItemBootFloppyDrvs: db "Number of Floppy Drives",NULL 426 427 g_szItemSerialDetect: db "Scan for Serial Drives",NULL … … 429 430 g_szDlgBootDrive: db "Enter default drive number (0xh for Floppy Drives, 8xh for Hard Disks).",NULL 430 431 g_szDlgBootDispMode: db "Select display mode.",NULL 432 g_szDlgColorTheme: db "Select color theme.",NULL 431 433 g_szDlgBootFloppyDrvs: db "Select number of Floppy Drives in system.",NULL 432 434 g_szDlgSerialDetect: db "Scan for serial drives?",NULL … … 435 437 g_szNfoBootDrive: db "Default boot drive.",NULL 436 438 g_szNfoDispMode: db "Display mode to set when booting.",NULL 439 g_szNfoColorTheme: db "Color theme used by the boot menu and the hotkey bar.",NULL 437 440 g_szNfoBootFloppyDrvs: db "Number of Floppy Drives in system.",NULL 438 441 g_szNfoSerialDetect: db "Scans all standard COM ports for serial drives." … … 442 445 db " When timer goes to zero, currently selected drive will be booted automatically." 443 446 db " Timeout can be disabled by setting this to 0.",NULL 444 445 447 g_szHelpBootDrive: db "Drive to be set selected by default when Boot Menu is displayed.",NULL 446 448 g_szHelpColorTheme: db "Pick a theme from a list of several pre-defined themes to customize the colors used by the boot menu and, if" 449 db " available, the hotkey bar. Selecting a theme or loading a BIOS, or its settings, from file or from ROM will" 450 db " make XTIDECFG apply the theme to itself for easy preview. The ability to preview themes requires that" 451 db " XTIDECFG is running in a display mode that can display colors. In other words, you may configure the" 452 db " BIOS on a machine with a monochrome graphics adapter and not be able to preview the theme but the BIOS will" 453 db " still use the selected theme when installed in a machine with a color graphics adapter.",NULL 447 454 g_szHelpBootFloppyDrvs: db "Detecting the correct number of floppy drives might fail when using a floppy controller with its own BIOS." 448 455 db " A minimum number of floppy drives can be specified to force non-detected drives to appear on boot menu.",NULL 449 450 456 g_szHelpSerialDetect: db "Set to Yes, at the end of normal drive detection, COM ports 1-7 (in reverse order) will be scanned for a connection" 451 457 db " to a serial drive server. This option provides flexibility with the COM port and baud rate to be used," … … 468 474 g_szValueBootDispModeCO80: db "CO80",NULL 469 475 g_szValueBootDispModeMono: db "Mono",NULL 476 477 g_szMultichoiceColorTheme: db "Classic (default)",LF 478 db "Argon Blue",LF 479 db "Neon Red",LF 480 db "Phosphor Green",LF 481 db "Moon Surface",LF 482 db "Toxic Waste",NULL 483 g_szValueColorTheme0: db "Classic",NULL 484 g_szValueColorTheme1: db "Argon",NULL 485 g_szValueColorTheme2: db "Neon",NULL 486 g_szValueColorTheme3: db "Phosphor",NULL 487 g_szValueColorTheme4: db "Moon",NULL 488 g_szValueColorTheme5: db "Toxic",NULL 470 489 471 490 g_szMultichoiceBootFloppyDrvs: db "Autodetect",LF
Note:
See TracChangeset
for help on using the changeset viewer.