source: trunk/bootcode/regular/std_text.asm

Last change on this file was 246, checked in by Ben Rietbroek, 7 years ago

Merged "strings-to-es-20180708.txt" provided by Alfredo [v1.1.5-testing]

Translator-build 'AiR-BOOT-v1.1.5-ES-TESTBUILD-20180721' was created
from this commit.

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.4-manual.pdf

File size: 4.1 KB
RevLine 
[29]1; AiR-BOOT (c) Copyright 1998-2008 M. Kiewitz
2;
3; This file is part of AiR-BOOT
4;
5; AiR-BOOT is free software: you can redistribute it and/or modify it under
6; the terms of the GNU General Public License as published by the Free
7; Software Foundation, either version 3 of the License, or (at your option)
8; any later version.
9;
10; AiR-BOOT is distributed in the hope that it will be useful, but WITHOUT ANY
11; WARRANTY: without even the implied warranty of MERCHANTABILITY or FITNESS
12; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13; details.
14;
15; You should have received a copy of the GNU General Public License along with
16; AiR-BOOT. If not, see <http://www.gnu.org/licenses/>.
17;
[8]18;---------------------------------------------------------------------------
19; AiR-BOOT / TEXT
20;---------------------------------------------------------------------------
21
[51]22IFDEF MODULE_NAMES
[30]23DB 'STD_TEXT',0
24ENDIF
25
[29]26; If you modify this Copyright and release this under your own name,
[46]27; I'm going to sue your cheap ass, rape your dog and blow up your house. =)
[8]28
[36]29
[46]30;
[188]31; Copyright header on top of screen
[46]32;
33Copyright:
[188]34IFDEF RELEASE
35 ;
36 ; Copyright header as displayed on RELEASE version
37 ;
[51]38 db ' AiR-BOOT v'
39 db BLDLVL_MAJOR_VERSION,'.'
40 db BLDLVL_MIDDLE_VERSION,'.'
[54]41 db BLDLVL_MINOR_VERSION,' - (c) 1998-'
[51]42 db BLDLVL_YEAR
[188]43 db ' Martin Kiewitz, Dedicated to Gerd Kiewitz'
44 db 0
45ELSE
46 ;
47 ; Copyright header as displayed on TESTBUILD version
48 ;
49 db ' AiR-BOOT v'
50 db BLDLVL_MAJOR_VERSION,'.'
51 db BLDLVL_MIDDLE_VERSION,'.'
52 db BLDLVL_MINOR_VERSION,' - (c) 1998-'
53 db BLDLVL_YEAR
[63]54 db ' M. Kiewitz << Test Build >> (bld:'
55 db BLDLVL_YEAR
56 db BLDLVL_MONTH
57 db BLDLVL_DAY,')'
[51]58 db 0
[188]59ENDIF
[46]60
[188]61; Length of version string to copy when displayed in menu and just before
62; booting the selected system.
63CopyrightVersionLen equ 6
[46]64
[246]65IF NOT BLD_LANG_TXT EQ 'es'
[51]66; License and source info.
67BootEndMsg db 'This is GPLv3+ software, please visit: http://www.gnu.org/licenses/gpl.txt', 0
68BootEndMsg2 db 'To obtain the sources, please visit: http://svn.netlabs.org/air-boot', 0
[246]69ENDIF
[45]70
[51]71; Bugger...
72CheckID_MBR db 'AiRBOOT'
73BrokenHDD db ' (HDDx)', 0
[30]74
[244]75IF NOT BLD_LANG_TXT EQ 'es'
[29]76; Colors for special words hard-coded. Keep all 0s.
[36]77TXT_SETUP_LowerMessage db 'This software is released under ', 0, 'GPLv3+', 0
[30]78 db 'http://www.gnu.org/licenses/gpl.txt', 0
[36]79 db 'For more information and source, please visit:', 0
[31]80 db 'http://svn.netlabs.org/air-boot', 0
[231]81 db 'Contact by e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0
[244]82ENDIF
[29]83
[51]84; Table that points to BIOS device names.
85ContinueBIOSbootTable dw offset TXT_SETUP_MAGIC_CDROM
86 dw offset TXT_SETUP_MAGIC_Network
87 dw offset TXT_SETUP_MAGIC_ZIPLS
88 dw 0
89
[244]90IF NOT BLD_LANG_TXT EQ 'es'
[51]91; LVM protection messages; should be translated and moved to lang-files.
92TXT_SETUP_NoEditType35 db 'Labels of LVM-Data partitions cannot be changed', 0
93TXT_SETUP_NoBootType35 db 'LVM-Data partitions cannot be set bootable', 0
94TXT_BootMenuPowerOff db 'DEL to Power Off', 0
95TXT_NoINT13XSupport db 'This BIOS does not support Extended INT13h Functions', 0
96;~ TXT_ERROR_TooManyPartitions db 'Too many partitions! -- Proper operation not guaranteed!', 0
97
98; MBR protection; should also be translated and moved.
99NonMBRwrite db 'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0
[64]100NonMBRwrite_rep db 'Please report this at rousseau.os2dev@gmx.com',0
[51]101SystemHalted db 'System Halted',0
102
[46]103; Build Information string.
[163]104build_date db 'Build Date: ',0
[165]105scanning_txt db 'Scanning...',0
[244]106ENDIF
Note: See TracBrowser for help on using the repository browser.