internationalization of initrd messages at bootup

Under development: PCMCIA, wireless, etc.
Message
Author
rodin.s
Posts: 344
Joined: Wed 22 Sep 2010, 19:50
Location: Ukraine

border lines

#46 Post by rodin.s »

I took pictures of menu of mp with normal and new consolefonts.
Attachments
16-02-12_2345.jpg
new
(42.52 KiB) Downloaded 445 times
16-02-12_2351.jpg
normal
(43.33 KiB) Downloaded 407 times

User avatar
BarryK
Puppy Master
Posts: 9392
Joined: Mon 09 May 2005, 09:23
Location: Perth, Western Australia
Contact:

#47 Post by BarryK »

Yes, I meant when running mp from commandline, no X running.

rodin.s, thanks, I'll check out your alternative console fonts.

Well, I have implemented internationalization of the initrd in Woof, and built Racy 5.2.2.6 to test it:

http://bkhome.org/blog/?viewDetailed=02691

Note though, I used L18L's original technique of simple sed expressions. The implementation is extremely simple, you can see the 'init' script online:

http://bkhome.org/fossil/woof2.cgi/arti ... 8fd83a47d6

The /locale/de/init translation file in the initrd is not online as it gets generated by 3builddistro in Woof, from this file:

http://bkhome.org/fossil/woof2.cgi/arti ... 709a624016
...note, the comments in the [general] section are slightly wrong, the translation actually happens at every boot, and all other SSS domains are now using the same simple sed expressions technique.

A language-choice menu is not required in the initrd, as Woof now is able to edit the initrd.gz and insert file /PUPPYLANG -- except for case of booting off CD -- in that case, you are stuck with the English messages at early-bootup, but as soon as execution gets to rc.sysinit then translation will kick in.

Note also, keyboard layout gets set to match the language, unless set by pkeys boot param or file /PUPPYKEYMAP in initrd -- important in situation where have to enter a password for encrypted save-file.
[url]https://bkhome.org/news/[/url]

User avatar
technosaurus
Posts: 4853
Joined: Mon 19 May 2008, 01:24
Location: Blue Springs, MO
Contact:

#48 Post by technosaurus »

whenever I have had issues with ncurses based interfaces, it was either:
a. the app needed ncursesw (unlikely if it works in X)
b. the incorrect terminfo was being exported and used ... I would guess that you need /usr/share/terminfo/l/linux and export TERM=linux in the initrd and init script respectively
Check out my [url=https://github.com/technosaurus]github repositories[/url]. I may eventually get around to updating my [url=http://bashismal.blogspot.com]blogspot[/url].

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

terminfo

#49 Post by L18L »

technosaurus wrote:whenever I have had issues with ncurses based interfaces, it was either:
a. the app needed ncursesw (unlikely if it works in X)
b. the incorrect terminfo was being exported and used ... I would guess that you need /usr/share/terminfo/l/linux and export TERM=linux in the initrd and init script respectively
Before putting it into init one can try.
I have tried:

Code: Select all

TERM=linux-m mp
and the left borderline of menu was displayed :)
This was in racy 5.2.2.6

äöü
- is correct on command line
- not in mp editing

Is there a ncursesw.pet ?
Not found in PPM

_____________________________

edited
same issue with some borderlines in xorgwizard
Last edited by L18L on Fri 17 Feb 2012, 12:04, edited 2 times in total.

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

simple sed expressions

#50 Post by L18L »

BarryK wrote:...Note though, I used L18L's original technique of simple sed expressions. The implementation is extremely simple, you can see the 'init' script online:
And slightly faster without g.
But password should become
s%"Password: "%"Paßwort: "%g
because translation has to happen more than once.
(And tell the translator to NOT remove g) :wink:

Compliment, you have also solved the problem of
done
using
"done" 8)

User avatar
BarryK
Puppy Master
Posts: 9392
Joined: Mon 09 May 2005, 09:23
Location: Perth, Western Australia
Contact:

Re: simple sed expressions

#51 Post by BarryK »

L18L wrote:
BarryK wrote:...Note though, I used L18L's original technique of simple sed expressions. The implementation is extremely simple, you can see the 'init' script online:
And slightly faster without g.
But password should become
s%"Password: "%"Paßwort: "%g
because translation has to happen more than once.
(And tell the translator to NOT remove g) :wink:

Compliment, you have also solved the problem of
done
using
"done" 8)
I think that the "g" only applies to the same line. That is, will translate multiple occurrences of "Password: " on the same line. If "Password: " is on different lines, then "g" is not required.
[url]https://bkhome.org/news/[/url]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

Re: simple sed expressions

#52 Post by L18L »

BarryK wrote:...
I think that the "g" only applies to the same line. That is, will translate multiple occurrences of "Password: " on the same line. If "Password: " is on different lines, then "g" is not required.
I was wrong :oops:
You have thought right
I have proved it 8)

Post Reply