source: trunk/bootcode/regular/std_text.asm@ 245

Last change on this file since 245 was 244, checked in by Ben Rietbroek, 7 years ago

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

Translator-build 'AiR-BOOT-v1.1.5-ES-TESTBUILD-20180708' 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.0 KB
Line 
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;
18;---------------------------------------------------------------------------
19; AiR-BOOT / TEXT
20;---------------------------------------------------------------------------
21
22IFDEF MODULE_NAMES
23DB 'STD_TEXT',0
24ENDIF
25
26; If you modify this Copyright and release this under your own name,
27; I'm going to sue your cheap ass, rape your dog and blow up your house. =)
28
29
30;
31; Copyright header on top of screen
32;
33Copyright:
34IFDEF RELEASE
35 ;
36 ; Copyright header as displayed on RELEASE version
37 ;
38 db ' AiR-BOOT v'
39 db BLDLVL_MAJOR_VERSION,'.'
40 db BLDLVL_MIDDLE_VERSION,'.'
41 db BLDLVL_MINOR_VERSION,' - (c) 1998-'
42 db BLDLVL_YEAR
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
54 db ' M. Kiewitz << Test Build >> (bld:'
55 db BLDLVL_YEAR
56 db BLDLVL_MONTH
57 db BLDLVL_DAY,')'
58 db 0
59ENDIF
60
61; Length of version string to copy when displayed in menu and just before
62; booting the selected system.
63CopyrightVersionLen equ 6
64
65; License and source info.
66BootEndMsg db 'This is GPLv3+ software, please visit: http://www.gnu.org/licenses/gpl.txt', 0
67BootEndMsg2 db 'To obtain the sources, please visit: http://svn.netlabs.org/air-boot', 0
68
69; Bugger...
70CheckID_MBR db 'AiRBOOT'
71BrokenHDD db ' (HDDx)', 0
72
73IF NOT BLD_LANG_TXT EQ 'es'
74; Colors for special words hard-coded. Keep all 0s.
75TXT_SETUP_LowerMessage db 'This software is released under ', 0, 'GPLv3+', 0
76 db 'http://www.gnu.org/licenses/gpl.txt', 0
77 db 'For more information and source, please visit:', 0
78 db 'http://svn.netlabs.org/air-boot', 0
79 db 'Contact by e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0
80ENDIF
81
82; Table that points to BIOS device names.
83ContinueBIOSbootTable dw offset TXT_SETUP_MAGIC_CDROM
84 dw offset TXT_SETUP_MAGIC_Network
85 dw offset TXT_SETUP_MAGIC_ZIPLS
86 dw 0
87
88IF NOT BLD_LANG_TXT EQ 'es'
89; LVM protection messages; should be translated and moved to lang-files.
90TXT_SETUP_NoEditType35 db 'Labels of LVM-Data partitions cannot be changed', 0
91TXT_SETUP_NoBootType35 db 'LVM-Data partitions cannot be set bootable', 0
92TXT_BootMenuPowerOff db 'DEL to Power Off', 0
93TXT_NoINT13XSupport db 'This BIOS does not support Extended INT13h Functions', 0
94;~ TXT_ERROR_TooManyPartitions db 'Too many partitions! -- Proper operation not guaranteed!', 0
95
96; MBR protection; should also be translated and moved.
97NonMBRwrite db 'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0
98NonMBRwrite_rep db 'Please report this at rousseau.os2dev@gmx.com',0
99SystemHalted db 'System Halted',0
100
101; Build Information string.
102build_date db 'Build Date: ',0
103scanning_txt db 'Scanning...',0
104ENDIF
Note: See TracBrowser for help on using the repository browser.