Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #1  
Old 25-10-2011, 09:08
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
thx bro will update it.
maybe there will be some others who want to correct translation
after this update come out...
Sponsored Links
  #2  
Old 25-10-2011, 10:01
BAMsE's Avatar
BAMsE BAMsE is offline
The World Is Yener's
 
Join Date: Mar 2011
Location: in front of the monitor
Posts: 344
Thanks: 49
Thanked 271 Times in 91 Posts
BAMsE is on a distinguished road
I've noticed there are more german custom mesages then for other langs. Maybe you can post it in english and we can translate them to other langs. Unfortunately my german isn't good enough to understand them
  #3  
Old 25-10-2011, 10:05
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
those are from old version
forget to delete them....
  #4  
Old 27-10-2011, 00:33
artdekdok artdekdok is offline
Registered User
 
Join Date: Dec 2008
Location: Kepler-22
Posts: 41
Thanks: 2
Thanked 66 Times in 13 Posts
artdekdok is on a distinguished road
yener

i'm add TH language in you source.
it's work!
Attached Images
File Type: jpg Untitled.jpg (157.9 KB, 989 views)

Last edited by artdekdok; 25-10-2012 at 00:52.
  #5  
Old 28-10-2011, 11:53
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
Quote:
Originally Posted by artdekdok View Post
yener
i'm add TH language in you source.
it's work!
sorry dude saw it now
perfekt work.
included and thx sooo much
  #6  
Old 28-10-2011, 11:37
shanrq shanrq is offline
Registered User
 
Join Date: Dec 2008
Location: Heart
Posts: 28
Thanks: 7
Thanked 1 Time in 1 Post
shanrq is on a distinguished road
where .iss for making setup.exe ?

after compile ISFreeArcExtract v.6.0.iss and then launch renamer.bat its only remake setup.dll but setup.exe its still same

guide me pls..


nb: solved..

Last edited by shanrq; 28-10-2011 at 11:50.
  #7  
Old 28-10-2011, 11:44
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
the changes are made in setup.ini not the exe directly.
  #8  
Old 28-10-2011, 12:28
shanrq shanrq is offline
Registered User
 
Join Date: Dec 2008
Location: Heart
Posts: 28
Thanks: 7
Thanked 1 Time in 1 Post
shanrq is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
the changes are made in setup.ini not the exe directly.
then how to add new registry address from setup.ini?
aagh so many question in my mind..
i tried to make new setup.cab for changed background but i got error message.. for info i use freearc to make .cab
what tools do you use for making .cab?

thx before
  #9  
Old 28-10-2011, 12:00
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
Update 6.1 (Downloads before: 112)
Changes:
- Updated Polish translation -> THX to BaMSE
- Added Thai language -> THX to artdekdok
- Fixed wrong text alignment of Install button
- Bug fixes
  #10  
Old 28-10-2011, 14:01
BAMsE's Avatar
BAMsE BAMsE is offline
The World Is Yener's
 
Join Date: Mar 2011
Location: in front of the monitor
Posts: 344
Thanks: 49
Thanked 271 Times in 91 Posts
BAMsE is on a distinguished road
@shanrq setup.cab is zip archive
@yener90 can you explain how to achieve lang sensitive reg values? Setting different values for each lang is rather troubling. I guess you're using some variable (defined in custom mesages?) to get proper lang entry
  #11  
Old 28-10-2011, 20:35
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by BAMsE View Post
winzip too and probably everything that uses deflate algorithm Simply zip all setup files and change an extension to cab. You can do it even by WinRAR
you can use winrar but the converter doesnt like winrar cab files ( Yener told me to use 7-zip not winrar for making cab files )

Quote:
Originally Posted by BAMsE View Post
@yener90 can you explain how to achieve lang sensitive reg values? Setting different values for each lang is rather troubling. I guess you're using some variable (defined in custom mesages?) to get proper lang entry
in Registry Section of ISS script:

Code:
Root: HKLM; Subkey: SOFTWARE\ABCDEF\GAMENAME; ValueName: Language; ValueType: String; ValueData: {code:GetLngID}; Flags: uninsdeletekey
Then in the code section of the ISS script

Code:
function GetLngID(Param: string): string;
begin
 
 case GetUILanguage of
    
  1040: Result:='IT';
  1033: Result:='EN';
  1034: Result:='ES';
  1031: Result:='DE';
  1036: Result:='FR';
  1029: Result:='CS';
  1045: Result:='PL';
  1049: Result:='RU';
  else  Result:='EN'; 

 end;
The installer looks to your Windows OS for languageID, so that will autofill in the proper registry value. The bold value above can be set to whatever default you choose.

Last edited by pakrat2k2; 28-10-2011 at 20:43.
  #12  
Old 29-10-2011, 10:41
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
Quote:
Originally Posted by BAMsE View Post
can you explain how to achieve lang sensitive reg values? Setting different values for each lang is rather troubling. I guess you're using some variable (defined in custom mesages?) to get proper lang entry
i hope this pic helps you:


a german phrase:
some pics can describe more then 1000 words

change in custom messages for pol example:
pol.Language2= to the worth you need...
also for other languages.
  #13  
Old 30-10-2011, 00:03
Grumpy's Avatar
Grumpy Grumpy is offline
Moderator
 
Join Date: Jun 2004
Location: Australia
Posts: 5,695
Thanks: 1,256
Thanked 1,851 Times in 812 Posts
Grumpy is on a distinguished road
Quote:
Originally Posted by yener90 View Post
a german phrase:
some pics can describe more then 1000 words
We have the same phrase in English:

A picture is worth a thousand words.
  #14  
Old 28-10-2011, 20:14
shanrq shanrq is offline
Registered User
 
Join Date: Dec 2008
Location: Heart
Posts: 28
Thanks: 7
Thanked 1 Time in 1 Post
shanrq is on a distinguished road
@BAMsE do you mean using winzip to create .cab.. how?
  #15  
Old 28-10-2011, 20:24
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
not winzip but 7-zip available here

Code:
http://www.7-zip.org/
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
INNO TROUBLESHOOT - Questions Here REV0 Conversion Tutorials 1565 29-11-2024 09:51
Inno Setup: Additional Libraries altef_4 Conversion Tutorials 50 21-10-2020 09:59
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Help- How to extract a .bin file compressed by a code ? Adonix Conversion Tutorials 22 22-03-2015 15:02
yener90's older Inno Project Source Codes THADEADMAN2011 PC Games - CD/DVD Conversions 0 16-06-2012 03:40



All times are GMT -7. The time now is 02:54.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com