Multilanguage version of UBCD.

If you have a tutorial or tip related to the UBCD, why not share it with other users here?

Moderators: Icecube, StopSpazzing

Locked
Message
Author
spacemx
Posts: 8
Joined: Sun Feb 19, 2006 7:48 am

Multilanguage version of UBCD.

#1 Post by spacemx » Mon Mar 13, 2006 6:43 am

I do an example, how to do multikanguage version of UBCD.
First, download the French language files from there.
Then, unpack the all files from menus directory to new directory, we call it frmenus.
Then, if you using the custom section, and you not know french, change the line 27 to: print " [F5] Utilitaires definis par l'utilisateur (EN) " .
And replace the cdshell.ini text to:

Code: Select all

cls
print "1. French --- 2. English"

#
# Actions
#
getkey
clear
if ($lastKey == key[1]); then goto french
if ($lastKey == key[2]); then goto english
goto bootcd2

french:
keymap /boot/keymaps/fr.ktl
cd menus
goto load

english:
cd menus
goto load

load:
set expert = 0
set x0 = " "
set x1 = "*"
script main.scn
If someone can contribute languages, then I accept! :-) (i'm using 3.4, and customized programs)

CurlBoy
Posts: 4
Joined: Tue Apr 04, 2006 2:15 am

#2 Post by CurlBoy » Tue Apr 04, 2006 2:16 am

I think you are right guys! :)

CurlBoy
Posts: 4
Joined: Tue Apr 04, 2006 2:15 am

#3 Post by CurlBoy » Tue Apr 04, 2006 2:17 am

Good topic! Very useful :):)

PPB
Posts: 8
Joined: Wed Mar 23, 2005 8:13 am

Hello from a French user :-)

#4 Post by PPB » Fri Apr 28, 2006 11:07 pm

Sorry but for me : it's :

french:
keymap /boot/keymaps/fr.ktl
cd frmenus
goto load

if you have yours french's menus in frmenus

...

spacemx
Posts: 8
Joined: Sun Feb 19, 2006 7:48 am

...

#5 Post by spacemx » Tue Jun 13, 2006 11:42 pm

Yep, sorry...
If someone add a language, that would be cool! (maybe i add Polish)
And i wanna to do Ultimate Boot DVD! (for myself) I will public what i add...

Max_ita
Posts: 7
Joined: Mon Jul 23, 2007 5:02 am

Re: Multilanguage version of UBCD.

#6 Post by Max_ita » Mon Jul 23, 2007 5:04 am

spacemx wrote:I do an example, how to do multikanguage version of UBCD.
First, download the French language files from there.
Excuse me but this link isn't valid and I want to create an italian version.
How?

Thx.

Constance
Posts: 338
Joined: Fri Sep 23, 2005 1:21 am
Location: France

#7 Post by Constance » Mon Jul 23, 2007 7:23 am

File was probably removed due to it being for an outdated version.

There is a french translation of UBCD 4 if you want to have a look at how it's made, but ... you will not get "the modified files", it's published as a xdelta to patch an existing ISO.

See here : viewtopic.php?t=874

Edit : Still, you may compare the 2 ISO's files using md5summer by generating md5 for the contents of the translation and "verifying" the contents of the original for example, then you know which files have been added / modified ...
Hammerite Compendium of Precepts, Regimens and Rules of Conduct, Vol. 113 :
A stroke of thy chisel, once made, canst be undone, but a stroke thou dost not make from fear is a worse flaw.
Be not cautious - be correct.

Max_ita
Posts: 7
Joined: Mon Jul 23, 2007 5:02 am

#8 Post by Max_ita » Tue Jul 24, 2007 6:02 am

How to create xdelta file?

Max_ita
Posts: 7
Joined: Mon Jul 23, 2007 5:02 am

#9 Post by Max_ita » Wed Jul 25, 2007 3:01 am

Max_ita wrote:How to create xdelta file?
Up.

Victor Chew
Posts: 1368
Joined: Mon Feb 21, 2005 10:59 pm
Contact:

#10 Post by Victor Chew » Wed Jul 25, 2007 5:52 am

How to create xdelta file?
Download xdelta.exe.

At the command line, type:

Code: Select all

xdelta delta original.iso changed.iso file.xdelta

Locked