PDA

View Full Version : How to edit components in Metro UI Install


Amsal
04-08-2015, 09:26
Can anyone tell me that how to edit components like english and russian ?

Amsal
05-08-2015, 06:47
is anyone can help me ?

here the download link for the Metro UI script

http://krinkels.org/resources/metro-ui-install.122/download?version=334

Andrey167
05-08-2015, 07:45
edit here

[Components]
Name: text; Description: Язык субтитров; Types: full; Flags: fixed
Name: text\rus; Description: Русский; Flags: exclusive; ExtraDiskSpaceRequired: 100000000
Name: text\eng; Description: Английский; Flags: exclusive; ExtraDiskSpaceRequired: 200000000
Name: voice; Description: Язык озвучки; Types: full; Flags: fixed
Name: voice\rus; Description: Русский; Flags: exclusive; ExtraDiskSpaceRequired: 500000000
Name: voice\eng; Description: Английский; Flags: exclusive; ExtraDiskSpaceRequired: 600000000

pakrat2k2
05-08-2015, 07:49
is anyone can help me ?

here the download link for the Metro UI script

http://krinkels.org/resources/metro-ui-install.122/download?version=334

rather then just a link add file directly to post ( under manage attatchments )

Amsal
05-08-2015, 08:36
I want only english. So what i have to do

mausschieber
05-08-2015, 09:00
I want only english. So what i have to do

add this ;
to disable see example

[Components]
Name: text; Description: Язык субтитров; Types: full; Flags: fixed
;Name: text\rus; Description: Русский; Flags: exclusive; ExtraDiskSpaceRequired: 100000000
Name: text\eng; Description: Английский; Flags: exclusive; ExtraDiskSpaceRequired: 200000000
Name: voice; Description: Язык озвучки; Types: full; Flags: fixed
;Name: voice\rus; Description: Русский; Flags: exclusive; ExtraDiskSpaceRequired: 500000000
Name: voice\eng; Description: Английский; Flags: exclusive; ExtraDiskSpaceRequired: 600000000

Amsal
05-08-2015, 09:06
add this ;
to disable see example

[Components]
Name: text; Description: Язык субтитров; Types: full; Flags: fixed
;Name: text\rus; Description: Русский; Flags: exclusive; ExtraDiskSpaceRequired: 100000000
Name: text\eng; Description: Английский; Flags: exclusive; ExtraDiskSpaceRequired: 200000000
Name: voice; Description: Язык озвучки; Types: full; Flags: fixed
;Name: voice\rus; Description: Русский; Flags: exclusive; ExtraDiskSpaceRequired: 500000000
Name: voice\eng; Description: Английский; Flags: exclusive; ExtraDiskSpaceRequired: 600000000

it doesn't disable

Razor12911
05-08-2015, 09:19
Find out what page that is then use shouldskippage function to skip or remove page permanently, shouldskippage is found under inno setup documentation so you have to a little reading.

Amsal
05-08-2015, 18:45
RAZOR19211, i can't do it. Can you please give me the edited script.

BUT FIRST RELEASE THE ASC AND THEN HELP ME
BECAUSE THE ASC PROJECT IS MORE IMPORTANT FOR ALL OF THAN THIS.

vint56
18-08-2015, 03:05
example
;Создает страничку компонентов
#define Components

#define SelectText "Выбор языка интерфейса:"
#define RusText "Русский"
#define EngText "Английский"

;#define SelectSound "Выбор языка озвучки:"
;#define RusSound "Русский"
;#define EngSound "Английский"

#define SelectSound "Выбор таблетки:"
#define RusSound "PROPHET"
#define EngSound "FAiRLiGHT"
;CODEX
;FAiRLiGHT
;PROPHET
;SKIDROW
;3DM
;DMN32 / SKIDROW (Steam Emu)


[CustomMessages]
;rus.RusText=Русский
;rus.RusSound=Русский
;rus.EngText=Английский
;rus.EngSound=Английский
;rus.SelectText=Выбор языка интерфейса:
;rus.SelectSound=Выбор языка озвучки:

[code_]
/////////////////////ComponentsPage///////////////////////////////////
TextLabel:= TLabel.Create(WizardForm);
with TextLabel do begin
Caption:=ExpandConstant('{#SelectText}');
end;

RUSTextLabel:= TLabel.Create(WizardForm);
with RUSTextLabel do begin
Caption:=ExpandConstant('{#RusText}');
end;

ENGTextLabel:= TLabel.Create(WizardForm);
with ENGTextLabel do begin
Caption:=ExpandConstant('{#EngText}');
end;

VoiceLabel:= TLabel.Create(WizardForm);
with VoiceLabel do begin
Caption:=ExpandConstant('{#SelectSound}');
end;

RUSVoiceLabel:= TLabel.Create(WizardForm);
with RUSVoiceLabel do begin
Caption:=ExpandConstant('{#RusSound}');
end;

ENGVoiceLabel:= TLabel.Create(WizardForm);
with ENGVoiceLabel do begin
Caption:=ExpandConstant('{#EngSound}');
end;

http://s019.radikal.ru/i606/1508/a5/feef5cec2655.png (http://radikal.ru/big/8cf6f737436c454cae872cc4d2cdf876)

ImmortalArc
18-11-2016, 09:10
Anyone can post it here I can't sign up In knrinkles
Please
Thanks

rez3vil
19-11-2016, 09:12
Anyone can post it here I can't sign up In knrinkles
Please
Thanks

the script is already uploaded at ultra arc section of topic.
http://fileforums.com/showpost.php?p=438418&postcount=7