Changeset 244 for trunk/bootcode/regular


Ignore:
Timestamp:
Jul 8, 2018, 7:40:47 PM (7 years ago)
Author:
Ben Rietbroek
Message:

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

Location:
trunk/bootcode/regular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/regular/bootmenu.asm

    r223 r244  
    798798BOOTMENU_BuildPartitionText     EndP
    799799
     800IF  NOT BLD_LANG_TXT EQ 'es'
     801; Drive-Letter indication for OS/2 partitions
    800802dl_text     db  '   on drive ',0
    801803dl_hidden   db  '   hidden   ',0
     804ENDIF
    802805
    803806;        In: DL - Active Partition
  • trunk/bootcode/regular/std_text.asm

    r231 r244  
    7171BrokenHDD       db ' (HDDx)', 0
    7272
     73IF  NOT BLD_LANG_TXT EQ 'es'
    7374; Colors for special words hard-coded. Keep all 0s.
    7475TXT_SETUP_LowerMessage      db 'This software is released under ', 0, 'GPLv3+', 0
     
    7778                            db 'http://svn.netlabs.org/air-boot', 0
    7879                            db 'Contact by e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0
     80ENDIF
    7981
    8082; Table that points to BIOS device names.
     
    8486                        dw     0
    8587
     88IF  NOT BLD_LANG_TXT EQ 'es'
    8689; LVM protection messages; should be translated and moved to lang-files.
    8790TXT_SETUP_NoEditType35      db 'Labels of LVM-Data partitions cannot be changed', 0
     
    99102build_date      db  'Build Date: ',0
    100103scanning_txt    db  'Scanning...',0
     104ENDIF
  • trunk/bootcode/regular/videoio.asm

    r241 r244  
    716716        mov     al, ' '
    717717        mov     si, offset [WinBeginPosY]
     718
     719        ; Adjust positions for language
     720        mov     bx, BLD_LANG_TXT
     721        cmp     bx, 06573h
     722        jne     @F
     723        xchg    ah, al
     724        mov     byte ptr [si+20], 0c6h
     725        mov     byte ptr [si+22], 007h
     726        mov     bx, cx
     727        push    si
     728        push    [si+bx+00]
     729        push    [si+bx+02]
     730        push    [si+bx+04]
     731        mov     di, si
     732        add     di, bx
     733        add     si, 17
     734        mov     cx, 7
     735        cld
     736        rep     movsb
     737        xchg    bx, cx
     738        mov     al, 085h
     739        stosb
     740        pop     [di+bx+04]
     741        pop     [di+bx+02]
     742        pop     [di+bx+00]
     743        pop     si
     744        xchg    ah, al
     745    @@:
    718746        add     si, cx
    719747        mov     ah, al
     
    783811        push    dx
    784812
    785         ; Jmp over the strings
    786         jmp     @F
    787 
    788 
    789     ; Label positions for disk information in preboot-menu
    790     VideoIO_DisplayDiskInfo_labpos  db  0, 5, 17, 26, 36, 46, 56, 61, 71
    791 
    792     ; Label names for disk information in preboot-menu
    793     VideoIO_DisplayDiskInfo_labels  db  'DISK '
    794                                     db  'SECTORS_LBA '
    795                                     db  'SECSIZE  '
    796                                     db  'I13_GEO   '
    797                                     db  'I13X_GEO  '
    798                                     db  'LVM_GEO   '
    799                                     db  'BUS  '
    800                                     db  'INTERFACE '
    801                                     db  'REMOVABLE'
    802                                     db  0
    803 
    804 
    805     ; Display disk information on the pre-MENU screen
    806     @@:
     813
     814        ;
     815        ; Display disk information on the pre-MENU screen
     816        ;
     817
    807818
    808819        ; Start postition -- allow for AuxIO message when debugging
     
    10841095
    10851096
    1086 
     1097; DOS CR/LF
     1098NL                  db 0dh, 0ah, 0
     1099
     1100IF  NOT BLD_LANG_TXT EQ 'es'
    10871101;
    10881102; Strings used in the pre-MENU screen
    10891103;
    1090 NL                  db 0dh, 0ah, 0
    10911104DisksFound          db "Disks Found          : ",0
    10921105PartitionsFound     db "Partitions Found     : ",0
     
    11021115;~ NotActive           db "NOT ACTIVE",0
    11031116;~ AutoStartPart       db "Auto Start Partition : ",0
     1117
     1118    ; Label positions for disk information in preboot-menu
     1119    VideoIO_DisplayDiskInfo_labpos  db  0, 5, 17, 26, 36, 46, 56, 61, 71
     1120
     1121    ; Label names for disk information in preboot-menu
     1122    VideoIO_DisplayDiskInfo_labels  db  'DISK '
     1123                                    db  'SECTORS_LBA '
     1124                                    db  'SECSIZE  '
     1125                                    db  'I13_GEO   '
     1126                                    db  'I13X_GEO  '
     1127                                    db  'LVM_GEO   '
     1128                                    db  'BUS  '
     1129                                    db  'INTERFACE '
     1130                                    db  'REMOVABLE'
     1131                                    db  0
     1132ENDIF
Note: See TracChangeset for help on using the changeset viewer.