Support forum of the software localization tool Sisulizer


.NET, Delphi, ... - Sisulizer Localization Tool Support Home

Get in contact with the makers of Sisulizer.
Our forum is open for all questions around Sisulizer from customers and prospects.
Don't hesitate to register and ask. The Sisulizer team will answer ASAP.

Search     Help Home Sisulizer Website Download
Search by username
Not logged in - Login | Register 

 Moderated by: Renate.Reinartz, Markus.Kreisel, Jaakko.Salmenius, Ilkka.Salmenius Page:  First Page Previous Page  1  2   
New Topic Reply Printer Friendly
Embedded / Multilingual dll - Bugs and Quirks in Sisulizer - Technical Support (You need to be registered at the forum to write) - .NET, Delphi, ... - Sisulizer Localization Tool Support
AuthorPost
 Posted: Wed May 21st, 2008 06:24 am
PM Private Upload Quote Reply
Ilkka.Salmenius
Administrator


Joined: Wed Aug 8th, 2007
Location: Tokyo, Japan
Posts: 956
Status: 
Offline
Could you post your SLP-file, please. Excatly the same that you used in your last screenshot.



____________________
http://www.sisulizer.com - Three simple steps to localize
Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 06:46 am
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
Ok thank you

Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 06:50 am
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
Hello guys,

here are the complete project structure.

Attachment: ChaosKernelMibe.zip (Downloaded 3 times)

Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 07:04 am
PM Private Upload Quote Reply
Jaakko.Salmenius
Administrator
 

Joined: Sat Apr 8th, 2006
Location: Espoo, Finland
Posts: 2275
Status: 
Offline
Now I got it.

The original file contains Swedish (Sweden) resources but the strings are in English.

When SL creates the multilingual it keeps the original and adds new resources. In your case the only language in the project is Swedish (Sweden) so SL replaces the resource data with the original one.

If you want to keep the original resource their language tag should be either neutral or English. Now the language tag of resources is Swedish but strings are in English and that cases the problem.

I still need to check why the size is the same. Eiter comibed size of Swedish resource is the same as original or there si a small bug in SL.

Jaakko



____________________
http://www.sisulizer.com - Three simple steps to localize
Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 07:08 am
PM Private Upload Quote Reply
Jaakko.Salmenius
Administrator
 

Joined: Sat Apr 8th, 2006
Location: Espoo, Finland
Posts: 2275
Status: 
Offline
Tack så mycket om ishockey bronsen :)

Jaakko



____________________
http://www.sisulizer.com - Three simple steps to localize
Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 07:27 am
PM Private Upload Quote Reply
Jaakko.Salmenius
Administrator
 

Joined: Sat Apr 8th, 2006
Location: Espoo, Finland
Posts: 2275
Status: 
Offline
The file size of the same because the resources a about equal in size and PE files alloc resource blocks in 512 bytes.

Jaakko



____________________
http://www.sisulizer.com - Three simple steps to localize
Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 09:49 am
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
This time you got the bronze, but next time it Routsi-time :-)


Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 09:50 am
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
Soo, do you have a suggestion on how we could get the english as a original language correctly set? With swedish translations.

Best Regards /Mikael

Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 09:51 am
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
Ok file size is almost same, but why is date the same?

Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 10:02 am
PM Private Upload Quote Reply
Jaakko.Salmenius
Administrator
 

Joined: Sat Apr 8th, 2006
Location: Espoo, Finland
Posts: 2275
Status: 
Offline
miber wrote: Soo, do you have a suggestion on how we could get the english as a original language correctly set? With swedish translations.


Use Visual Studio's resource editor (the one you used to create resource in the first place) and change the resource language to English.

You can also open RC file to text editor and replace

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_SWEDISH, SUBLANG_SWEDISH_SWEDEN
#pragma code_page(1252)
#endif //_WIN32


to

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32


or

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#pragma code_page(1252)
#endif //_WIN32


Then you recompile the DLL and now you have the same English DLL that has resource languages set correctly to English or neutral.

Jaakko



____________________
http://www.sisulizer.com - Three simple steps to localize
Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 10:10 am
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
Thank you Jaakko,

Much thank you for the info, i didnt do the dll and stuff we are
talking about here, so i thank you for you knowledge.

Best Regards /Mikael

Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 01:21 pm
PM Private Upload Quote Reply
Ilkka.Salmenius
Administrator


Joined: Wed Aug 8th, 2007
Location: Tokyo, Japan
Posts: 956
Status: 
Offline
miber wrote: Ok file size is almost same, but why is date the same?

Sisulizer didn't updated the date if the size was almost same. I will change this to the next version.



____________________
http://www.sisulizer.com - Three simple steps to localize
Back To Top PM Private Upload Quote Reply

 Posted: Wed May 21st, 2008 04:55 pm
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
Thank you guys,

Your really professional at Sisulizer, like working with you.

Best regards /Mikael

Back To Top PM Private Upload Quote Reply

 Posted: Mon May 26th, 2008 10:37 am
PM Private Upload Quote Reply
miber
Member
 

Joined: Tue Apr 8th, 2008
Location: Stockholm, Sweden
Posts: 93
Status: 
Offline
Hello guys,

Saw there are no Swedish version of Sisulizer, if you like, you can contract me to do the translation :-).

Best Regards /Mikael

Back To Top PM Private Upload Quote Reply

 Posted: Mon May 26th, 2008 10:42 am
PM Private Upload Quote Reply
Markus.Kreisel
Administrator


Joined: Sat Apr 8th, 2006
Location: Monschau, Germany
Posts: 2143
Status: 
Offline
Hi Mikael,

I will send you a PM.

Best

Markus



____________________
http://www.sisulizer.com - Three simple steps to localize
Back To Top PM Private Upload Quote Reply

Current time is 06:23 pm Page:  First Page Previous Page  1  2     
.NET, Delphi, ... - Sisulizer Localization Tool Support > Technical Support (You need to be registered at the forum to write) > Bugs and Quirks in Sisulizer > Embedded / Multilingual dll



WowUltra modified by Sisulizer Copyright © 2007-09 by Jim Hale - Based on WowBB Copyright © 2003-2006 Aycan Gulez

Sisulizer software localization tool - Three simple steps to localize