source: trunk/BOOTCODE/TEXT/SW/MENUS.ASM@ 55

Last change on this file since 55 was 51, checked in by Ben Rietbroek, 12 years ago

AiR-BOOT v1.0.8-rc3 build-20120909 [2012-09-10]

With Git one can easily hop-skip-and-jump between branches.
So I use Git for my local repos and make use of this easy branching.
Because SVN can only handle lineair history, these branches had to be
rebased before committing them to Netlabs. So, this commit contains a
multitude of changes which makes it a bit hairy.

New

o Display LVM drive-letters in the main menu

A populair request was to show drive-letter information in the menu.
Drive-letters however, are OS specific and AiR-BOOT cannot
accurately predict what drive-letter other operating systems would
assign to what partition. eCS LVM drive-letters however are stored
in the LVM-record and can thus be displayed.

o Added 'Show LVM Drive Letters' option in SETUP/BASIC

This will toggle the display of LVM drive-letters in the main menu.
By default this option is enabled.

o Show popup message when BIOS INT13X extensions are not available

The system is halted.

o Show 'DEL to Power Off' in the bottom left corner

This tries to power-off the system, but it may not work for you.

o Simple interactive debugger

Outputs to the serial port with a few one-letter commands to dump
internal tables and state. (Only available in debug builds)

o Enhanced drive-letter feature

Enable multiple eCS installations using the same drive-letter.
This makes it possible to clone a system with the command
'XCOPY /h /o /t /s /e /r /v /e' to another drive and have that boot
from the same drive-letter.
(Or installing to the same drive by hiding the other system)

Changes

o Reduced MBR protection-image from 1024 to 768 bytes

Luckily the MBR Protection Image code does not exceed 768 bytes,
so that gives us another 256 bytes of precious code-space.
Now the non-EN versions are happy again.
Note that the alignment for the image changed from 512 to 256 bytes.
MBR-PROT.ASM, FIXCODE.C, PARTMAIN.ASM and AIR-BOOT.ASM have been
adjusted for this change.
The fight for code-space continues...

o Updating from v1.06 now also copies over drive-letters

When the user has forced drive-letters in v1.06 these will be copied
over to the v1.0.8 configuration when upgrading.
Because the drive-letter feature is broken in v1.07,
the drive-letter table does not get copied over when upgrading
from v1.07.

o Made FX-code optional to compile in

The FX-code supplies the shifting screen-effects when 'Cooper Bars'
is enabled in the setup. With the current enhancements made however,
there is a continuous lack of code-space, especially when debug-code
is included during development. The FX-code occupies some
1200 bytes, a space that can be put to better use. Therefore the
inclusion of the FX-code has been made conditional to make room for
either debugging or future new features.

o Also rewrite PBR on HPFS

Earlier, a fix was made to write a modified PBR back in case JFS was
used. This was done to enable the drive-letter feature on JFS, since
the PBR JFS-bootcode does not use the supplied PBR in memory.
With the enhancements in the drive-letter feature, the HPFS PBR
needs to be updated on disk also, to cope with zero drive-letters in
the HPFS PBR. This potentially fixes a missing drive-letter in the
PBR when the system is restored from an archive. You might need the
drive-letter feature to force the correct drive-letter on the first
boot, after which the feature can be disabled.

o Added extra MBR protection

When AiR-BOOT is active, it is only AiR-BOOT that writes to the MBR.
To protect the MBR from programming errors, like the one below,
any write to the MBR is now checked for validity.
In essence this is protecting your MBR from bad programming done
by me...

Fixes

o Fixed a minor bug with displaying LVM drive-letters

When more partitions that can be displayed were present, scrolling
the menu would not scroll the drive-letter. Fixed.

o Fixed a bug with regard to the drive-letter feature

When partitions were deleted, and some partitions above the deleted
partition(s) had a drive-letter forced, these partitions would lose
this assignment. This bug is also present in v1.06.

Note

The AIRBOOT.HIS file mentions a DOCU directory with the AiR-BOOT
documentation etc. However, this is not present in this commit and
will be provided at a later time.

File size: 20.5 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 SETUP / ALL SETUP MENUS
20; v046 - Swedish - by Bj”rn S”derstr”m
21;---------------------------------------------------------------------------
22
23; Main Setup - Items - Max Length: 33
24;----------------------------------|-------------------------------|--------
25TXT_SETUP_PartitionSetup db 'SETUP AV PARTITIONER', 0
26TXT_SETUP_BasicOptions db 'GRUNDLŽGGANDE OPTIONER', 0
27TXT_SETUP_AdvOptions db 'AVANCERADE OPTIONER', 0
28TXT_SETUP_ExtOptions db 'UT™KADE BOOTNINGSOPTIONER', 0
29TXT_SETUP_DefMasterPwd db 'DEFINIERA MASTER L™SENORD', 0
30TXT_SETUP_DefBootPwd db 'DEFINIERA BOOT L™SENORD', 0
31TXT_SETUP_SaveAndExit db 'SPARA & AVSLUTA SETUP', 0
32TXT_SETUP_JustExit db 'AVSLUTA UTAN ATT SPARA', 0
33
34; The Letters for all flags in Partition Setup
35TXT_SETUP_FlagLetterBootable equ 'B'
36TXT_SETUP_FlagLetterVIBR equ 'V'
37TXT_SETUP_FlagLetterHide equ 'H'
38TXT_SETUP_FlagLetterDrvLetter equ 'L'
39TXT_SETUP_FlagLetterExtMShack equ 'P'
40
41TXT_SETUP_LetterYes equ 'J'
42TXT_SETUP_LetterYes2 equ 'Z'
43TXT_SETUP_LetterNo equ 'N'
44
45; Basic Options - Items - Max Length: 23
46;----------------------------------|---------------------|------------------
47TXT_SETUP_DefaultSelection db 'Standard Partition', 0
48TXT_SETUP_TimedBoot db 'Tidstyrd Bootning', 0
49TXT_SETUP_TimedBootDelay db 'TidsBoot F”rdr”j (sek)', 0
50TXT_SETUP_TimedKeyHandling db 'Tids Tangenthantering', 0
51TXT_SETUP_BootLastIfTimed db 'Boota fr.Senast Om Tids', 0
52TXT_SETUP_RememberLastBoot db 'Kom Ih†g Senaste Boot', 0
53TXT_SETUP_RememberTimedBoot db 'Kom Ih†g Tids Boot', 0
54TXT_SETUP_IncludeFloppy db 'Inkludera Diskettenhet', 0
55TXT_SETUP_ShowLVMDriveLetters db 'Show LVM Drive Letters',0
56TXT_SETUP_MbrProtection db 'MBR Skydd', 0
57TXT_SETUP_IgnoreMbrWrites db '-> Ignorera MBR Skriv', 0
58TXT_SETUP_MakeSounds db 'Anv„nd Ljud', 0
59TXT_SETUP_CooperBars db 'Cooper Bars', 0
60
61; Advanced Options - Items - Max Length: 23
62;----------------------------------|---------------------|------------------
63TXT_SETUP_BootMenu db 'Bootning Meny', 0
64TXT_SETUP_PartAutoDetect db 'Partition Autouppt„ck', 0
65TXT_SETUP_SecurityOptions db '-> S„kerhet Opt. <-', 0
66TXT_SETUP_PasswordedSetup db 'L”senskyddad Setup', 0
67TXT_SETUP_PasswordedSystem db 'L”senskyddat System', 0
68TXT_SETUP_PasswordedChangeBoot db 'L”senskyddad Boot„ndr.', 0
69TXT_SETUP_GetFloppyName db 'H„mta Diskettnamn', 0
70TXT_SETUP_GetFloppyName2Sec db '-> H„mta Var 2 Sekund', 0
71TXT_SETUP_VirusDetect db 'Virus Uppt„ckt', 0
72TXT_SETUP_StealthDetect db 'Stealth Uppt„ckt', 0
73TXT_SETUP_VIBRdetect db 'VIBR Uppt„ckt', 0
74TXT_SETUP_ContinueBIOSboot db 'Forts„tt BIOS Boot Sekv', 0
75
76; Extended Options - Items - Max Length: 23
77;----------------------------------|---------------------|------------------
78; [Linux support removed since v1.02]
79;TXT_SETUP_LinuxKernelPart db 'Linux Kernel Partition', 0
80;TXT_SETUP_LinuxDefaultKernel db 'Linux Standard K„rna', 0
81;TXT_SETUP_LinuxRootPart db 'Linux Root Partition', 0
82; This here may be larger than 23 chars...
83;TXT_SETUP_DefLinuxCmd db 'DEFINIERA KOMMANDORAD F™R LINUX', 0
84TXT_SETUP_IgnoreLVM db 'Ignore LVM information', 0
85; ###
86;~ TXT_SETUP_ForceLBAUsage db 'Forc BIOS-LBA Anv„ndn.', 0
87TXT_SETUP_ExtPartMShack db 'Ext-Part MS Workaround', 0
88
89; DYNAMIC LENGTH, maximum 11 chars excluding ending zero
90;----------------------------------|---------|------------------------------
91TXT_SETUP_MAGIC_Enabled db 'Aktiverad', 0
92TXT_SETUP_MAGIC_Disabled db 'Avaktiverad', 0
93TXT_SETUP_MAGIC_Detailed db 'Detaljerad', 0
94TXT_SETUP_MAGIC_NoBootable db 'Ej Bootbar', 0
95; [Linux support removed since v1.02]
96;TXT_SETUP_MAGIC_NoLinux db 'Ej Linux', 0
97TXT_SETUP_MAGIC_DoNothing db 'G”r Inget', 0
98TXT_SETUP_MAGIC_ResetTime db 'terst. Tid', 0
99TXT_SETUP_MAGIC_StopTime db 'Stopp Tid', 0
100TXT_SETUP_MAGIC_CDROM db 'CD-ROM', 0
101TXT_SETUP_MAGIC_Network db 'N„tverk', 0
102TXT_SETUP_MAGIC_ZIPLS db 'ZIP/LS120', 0
103; Max Length: 10 (used in Hide-Configuration as well)
104;----------------------------------|--------|-------------------------------
105TXT_SETUP_MAGIC_Hidden db 'Dold', 0
106TXT_SETUP_MAGIC_Unhidden db 'Ej Dold', 0
107; Max Length: 10 ("C:" will be appended afterwards)
108;----------------------------------|--------|-------------------------------
109TXT_SETUP_MAGIC_Set db 's„tt ', 0
110
111; Setup Control Help - Max Length: 33
112;----------------------------------|-------------------------------|--------
113TXT_SETUPHELP_Main db 24,32,25,32,26,32,27,' : V„lj Aktion', 0
114 db 'Enter : V„lj Aktion', 0
115 db 'F10 : Spara&Avsluta Setup', 0
116 db 'Esc : L„mna Setup', 0
117
118TXT_SETUPHELP_SubMenu db 24,32,25,32,26,32,27,' : V„lj Post', 0
119 db 'PgUp/Dn : Žndra Post', 0
120 db 'F1 : Visa hj„lp f”r post', 0
121 db 'Esc : terv„nd till huvud-menyn', 0
122
123TXT_SETUPHELP_PartSetup db 24,32,25,32,26,32,27,' : V„lj partition', 0
124 db 'Enter : Editera etikett', 0
125 db 'F1 : Flagga (tryck tg f”r v„xl)', 0
126 db 'Esc : terv„nd till huvud-menyn', 0
127
128; HELP FOR EVERY MENU-ITEM, Maximum Length = 22 chars PER line. Maximum 5 lines
129
130 ;1234567890123456789012
131;----------------------------------|--------------------|-------------------
132TXT_SETUPHELP_PartitionSetup db 'G”r dina partitioner', 0
133 db 'bootningsbara, „ndra', 0
134 db 'deras namn, definiera', 0
135 db 'g”mma och mycket', 0
136 db 'annat.', 0
137 db 0
138TXT_SETUPHELP_BasicOptions db 'Dessa optioner „r f”r', 0
139 db 'oerfarna anv„ndare.', 0
140TXT_SETUPHELP_AdvOptions db 'Dessa „r f”r', 0
141 db 'avancerade anv„ndare.', 0
142 db 'Om du inte vet vad de', 0
143 db 'g”r, l„mna som de „r.', 0
144 db 0
145TXT_SETUPHELP_ExtOptions db 'Ut”kade optioner f”r', 0
146 db 'specifika OS.', 0
147 db 0
148TXT_SETUPHELP_DefMasterPwd db 'Definiera ett', 0
149 db 'l”senord f”r access', 0
150 db 'till setup och', 0
151 db 'system.', 0
152 db 0
153TXT_SETUPHELP_DefBootPwd db 'Definiera ett', 0
154 db 'l”senord f”r access', 0
155 db 'till system.',0
156 db 0
157TXT_SETUPHELP_SaveAndExit db 'Kommer att fors„tta', 0
158 db 'bootprocessen och', 0
159 db 'spara de aktuella', 0
160 db 'optionerna.',0
161 db 0
162TXT_SETUPHELP_JustExit db 'Kommer att fors„tta', 0
163 db 'men ignorerar alla', 0
164 db '„ndringar som gjorts', 0
165 db 'till optionerna.',0
166 db 0
167
168TXT_SETUPHELP_InPartitionSetup db 'B - Bootningbar', 0
169 db 'V - VIBR-Uppt„ckt', 0
170 db 'H - Dolt St”d', 0
171 db 'L - Partition Bokstav', 0
172 db 'P - Ext-Part MS invent', 0
173 db 0
174
175TXT_SETUPHELP_HideSetup db 'V„lj status f”r', 0
176 db 'vilka partitioner', 0
177 db 'som skall d”ljas,', 0
178 db 'n„r den aktuellt valda', 0
179 db 'partitionen bootas.', 0
180 db 0
181
182; Basic Options - Help
183;----------------------------------|--------------------|-------------------
184TXT_SETUPHELP_DefaultSelection db 'Changes your default', 0
185 db 'selection. It can be', 0
186 db 'used on Timed Boot.', 0
187 db 0
188; ####
189TXT_SETUPHELP_DefaultPart db 'Žndrar din standard', 0
190 db 'partition. Den kan', 0
191 db 'anv„ndas vid Tidstyrd', 0
192 db 'Bootning.', 0
193 db 0
194TXT_SETUPHELP_TimedBoot db 'AiR-BOOT kommer att', 0
195 db 'forts„tta automatiskt', 0
196 db 'efter en specificerad', 0
197 db 'f”rdr”jning.', 0
198 db 0
199TXT_SETUPHELP_TimedBootDelay db 'Den omn„mnda', 0
200 db 'f”rdr”jningen f”r.', 0
201 db 'Tidsstyrd Bootning.', 0
202 db 0
203TXT_SETUPHELP_TimedKeyHandling db 'Om du trycker en', 0
204 db 'tangent i Bootmenyn', 0
205 db 'n„r du anv„nder Tids', 0
206 db 'Boot, vad skall', 0
207 db 'AiR-BOOT g”ra?',0
208 db 0
209TXT_SETUPHELP_BootLastIfTimed db 'AiR-BOOT kommer att', 0
210 db 'anv„nda sist-bootade', 0
211 db 'part. med TidsBoot.', 0
212 db 'Annars kommer den', 0
213 db 'att anv„nda standard', 0
214 db 0
215TXT_SETUPHELP_RememberLastBoot db 'AiR-BOOT kommer att', 0
216 db 'h†lla meny-raden p†', 0
217 db 'sist bootade', 0
218 db 'partionen vid start.', 0
219 db 0
220TXT_SETUPHELP_RememberTimeBoot db 'Liksom den senaste', 0
221 db 'optionen, kommer', 0
222 db 'AiR-BOOT att h†lla', 0
223 db 'raden ocks† f”r', 0
224 db 'Tidsstyrd Bootning.', 0
225 db 0
226TXT_SETUPHELP_IncludeFloppy db 'AiR-BOOT kommer att', 0
227 db 'till†ta booting', 0
228 db 'fr†n A: via menyn.', 0
229 db 0
230TXT_SETUPHELP_ShowLVMDriveLetters db 'AiR-BOOT will show', 0
231 db 'LVM Drive Letters', 0
232 db 'in the menu.', 0
233 db 0
234TXT_SETUPHELP_MbrProtection db 'Skydda din MBR via', 0
235 db 'resident kod. Beh”ver', 0
236 db '1 KByte av bas-minne', 0
237 db 'Kan vara inkompatibelt', 0
238 db 'med vissa OS.', 0
239 db 0
240TXT_SETUPHELP_IgnoreMbrWrites db 'Om det „r aktiverat,', 0
241 db 'kommer all skrivning', 0
242 db 'att ignoreras, annars', 0
243 db 'kommer systemet att', 0
244 db '"krascha".', 0
245 db 0
246TXT_SETUPHELP_MakeSounds db 'AiR-BOOT kan f†s att', 0
247 db 'utf”ra ljud med din', 0
248 db 'interna h”gtalare.', 0
249 db 0
250TXT_SETUPHELP_CooperBars db 'Kommer att utf”ra', 0
251 db 'snygga effekter', 0
252 db 'under bootning.', 0
253 db 0
254
255; Advanced Options - Help
256;----------------------------------|--------------------|-------------------
257TXT_SETUPHELP_BootMenu db 'Avaktiverad visar den', 0
258 db 'inte menyn och bootar', 0
259 db 'standard partion', 0
260 db 'direkt. Detaljerad', 0
261 db 'visar mer information.', 0
262 db 0
263TXT_SETUPHELP_PartAutoDetect db 'Om AiR-BOOT hittar nya', 0
264 db 'partitioner, kommer', 0
265 db 'den att g”ra dom', 0
266 db 'bootningsbara.', 0
267 db 0
268TXT_SETUPHELP_PasswordedSetup db 'N„r du kommer till den', 0
269 db 'h„r setupen, kommer du', 0
270 db 'att bli tillfr†gad om', 0
271 db 'ett l”senord.', 0
272 db 0
273TXT_SETUPHELP_PasswordedSystem db 'N„r du bootar din', 0
274 db 'dator, kommer du att', 0
275 db 'bli tillfr†gad om det.', 0
276 db 0
277TXT_SETUPHELP_PasswordedBoot db 'N„r Tidstyrd Bootning', 0
278 db 'inte anv„nds kommer du', 0
279 db 'att bli tillfr†gad.', 0
280 db 0
281TXT_SETUPHELP_GetFloppyName db 'N„r du visar diskett', 0
282 db 'i boot-menyn, kommer', 0
283 db 'AiR-BOOT att h„mta', 0
284 db 'diskettnamnet.', 0
285 db 0
286TXT_SETUPHELP_GetFloppyName2Sec db 'Som till„gg kommer', 0
287 db 'den att uppdatera', 0
288 db 'diskettnamnet', 0
289 db 'varannan sekund.', 0
290 db 0
291TXT_SETUPHELP_VirusDetect db 'Kommer att uppt„cka', 0
292 db 'normala virus (enkla).', 0
293 db 0
294TXT_SETUPHELP_StealthDetect db 'Kommer att uppt„cka', 0
295 db 'Stealth virus.', 0
296 db 0
297TXT_SETUPHELP_VIBRdetect db 'Kommer att uppt„cka', 0
298 db 'VIBR. VIBR st†r f”r', 0
299 db 'Virus-In-Boot-Record.', 0
300 db 0
301TXT_SETUPHELP_ContinueBIOSboot db 'Om aktiverad, kommer', 0
302 db 'den h„r optionen att', 0
303 db 'returnera kontrollen', 0
304 db 'till BIOS f”r det.', 0
305 db 'spec. devicet.', 0
306 db 0
307
308; Extended Options - Help
309;----------------------------------|--------------------|-------------------
310; [Linux support removed since v1.02]
311;TXT_SETUPHELP_LinuxKernelPart db 'Definierar FAT-16', 0
312; db 'partition som', 0
313; db 'inneh†ller dina', 0
314; db 'Linux k„rnor.', 0
315; db 0
316;TXT_SETUPHELP_LinuxDefaultKrnl db 'Definiera din', 0
317; db 'standardk„rnas', 0
318; db 'filnamn.', 0
319; db 0
320;TXT_SETUPHELP_LinuxRootPart db 'Žndrar din Linux', 0
321; db 'root partition.', 0
322; db 0
323;TXT_SETUPHELP_DefLinuxCmd: db 'Definierar kommando', 0
324; db 'rad f”r Linux, om', 0
325; db 'tillg„ngligt.', 0
326; db 0
327TXT_SETUPHELP_IgnoreLVM db 'If activated, AiR-BOOT', 0
328 db 'won''t even look for', 0
329 db 'LVM information.', 0
330 db 0
331; ###
332;~ TXT_SETUPHELP_ForceLBAUsage db 'Forc. anv„ndning av', 0
333 ;~ db 'BIOS LBA APIs', 0
334 ;~ db 'ist„llet f”r mixad anv.', 0
335 ;~ db 'av CHS och LBA.', 0
336 ;~ db 0
337TXT_SETUPHELP_ExtPartMShack db 'Aktiverar dyn. „ndring', 0
338 db 'av den ut”kade part.,', 0
339 db 'skriv id f”r standard', 0
340 db 'eller MS-uppfinnade.', 0
341 db '(definierad av P-flag)', 0
342 db 0
343
344; Maximum 26 chars (should not be reached)
345;----------------------------------|------------------------|---------------
346TXT_SETUPHELP_Base db ' HJŽLP ', 0
347TXT_SETUPHELP_Enter db '<ENTER>', 0
348
349; Maximum 60 chars (should not be reached)
350;----------------------------------|----------------------------------------------------------|
351TXT_SETUP_PasswordOld db 'Gammalt L”senord:', 0
352TXT_SETUP_PasswordDefine db 'Definiera L”senord:', 0
353TXT_SETUP_PasswordVerify db 'Verifiera L”senord:', 0
354TXT_SETUP_PasswordIncorrect db 'Gammalt L”senord Inte Korrekt, Ledsen', 0
355TXT_SETUP_PasswordMismatch db 'Matchar Inte, Gammalt L”senord Beh†lls', 0
356TXT_SETUP_PasswordDisabled db 'Inget L”senord -> Skydd Avaktiverat', 0
357TXT_SETUP_PasswordMatched db '** Matchar, Nytt L”senord Satt **', 0
358
359; Maximum 60 chars (should not be reached anyway)
360;----------------------------------|----------------------------------------------------------|
361TXT_SETUP_SaveAndExitNow db 'SPARA & AVSLUTA NU', 0
362TXT_SETUP_QuitWithoutSaveNow db 'AVSLUTA UTAN ATT SPARA', 0
363; Must be shorter than SaveAndExitNow / QuitWithoutSaveNow
364;----------------------------------|----------------------------------------------------------|
365TXT_SETUP_AreYouSure1 db 'ŽR DU SŽKER?', 0
366TXT_SETUP_AreYouSure2 db '(J/N)', 0
367
368; Maximum 60 chars (should not be reached)
369;----------------------------------|----------------------------------------------------------|
370; [Linux support removed since v1.02]
371;TXT_SETUP_EnterLinuxCmdLine db 'Var v„nlig ange/modifiera din Linux kommando-rad:', 0
372;TXT_SETUP_NoLinuxInstalled db 'Du har inte Linux installerat', 0
373TXT_SETUP_NoLDLpartition db 'Den valda partitionen „r inte varken HPFS/FAT16/JFS', 0
374
375; Maximum 34 chars (should not be reached)
376;----------------------------------|--------------------------------|-------
377TXT_SETUP_HideFeature db 'D”lj Funktion', 0
378;----------------------------------|---------------------|------------------
379TXT_SETUP_HideFeature2 db 'Status vid bootning ', 0
380
381; Drive-Letter Menu Header - Max Length: 19 chars
382;----------------------------------|-----------------|----------------------
383TXT_SETUP_DriveLetter db 'Partition Bokstav', 0
384
385; Drive-Letter Keys - Max Length: 19 chars
386;----------------------------------|-----------------|----------------------
387TXT_SETUPHELP_DriveLetter db 'Tryck C-Z', 0
388
389; Colors for special words hard-coded. Keep all 0s.
390;TXT_SETUP_LowerMessage db 'Detta program „r ',0,'fritt',0,' f”r icke-kommersiell privat anv„ndning.',0
391; db 'Du f†r ',0,'INTE',0,' distribuera/anv„nda AiR-BOOT i ',0,'-NGON-',0,' form,',0
392; db 'om du erh†ller pengar f”r den distribuerade produkten eller servicen.',0
393; db 'Om du vill anv„nda AiR-BOOT i ',0,'andra sammanhang',0,', ',0,'f”rinstallera',0,' eller',0
394; db 'distribuera',0,' den, var v„nlig och kontakta mig via e-mail: ',0,'kiewitz@netlabs.org',0,' !',0
Note: See TracBrowser for help on using the repository browser.