Author Topic: French Language problem (maybe other language too)...  (Read 4631 times)

Offline Benjamin Siskoo

  • Newbies
  • *
  • Posts: 47
  • Karma: +5/-0
    • Tradu-France
French Language problem (maybe other language too)...
« on: July 13, 2017, 03:55:46 AM »
Hello Barry :)

Problem #1 :

https://www.fbalpha.com/localisation/downloadtemplates/ --> download any language, version is "version 0x029741" instead version 0x029742.

Problem #2 :

Strings problem :
              //-- "&System information"
        10502  258 "Information &Syst?me" <-- stay in english
              //-- "&About FB Alpha"
        10501  259 "&A Propos De FB Alpha" <-- stay in english
« Last Edit: July 13, 2017, 04:00:49 AM by Benjamin Siskoo »

Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: French Language problem (maybe other language too)...
« Reply #1 on: July 13, 2017, 05:30:45 AM »
Hi Benjamin.

Problem 1: Fixed.  :biggrin:
Problem 2: I'll take a look at it for the next release.
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline Gab75

  • FBNeo Contributor
  • *****
  • Posts: 1481
  • Karma: +33/-0
  • All games deserve to be emulated, more or less! :P
Re: French Language problem (maybe other language too)...
« Reply #2 on: July 13, 2017, 05:57:30 AM »
Strings problem :
              //-- "&System information"
        10502  258 "Information &Syst?me" <-- stay in english
              //-- "&About FB Alpha"
        10501  259 "&A Propos De FB Alpha" <-- stay in english

This issue is also in italian template (I presume the problem is with all additional templates)...

Offline Gab75

  • FBNeo Contributor
  • *****
  • Posts: 1481
  • Karma: +33/-0
  • All games deserve to be emulated, more or less! :P
Re: French Language problem (maybe other language too)...
« Reply #3 on: July 13, 2017, 06:10:30 AM »
Also the following strings have a similar issue:

        //-- "Select desired 3D projection properties"
dialog     67 "Seleziona le proprieta' della proiezione 3D" {
        //-- "OK"
      1      0 ""
        //-- "Screen Angle"
  20094      3 "Inclinazione" <-- stay in english
        //-- "Fishbowl Factor"
  20096      6 "Effetto Fishbowl" <-- stay in english
        //-- "Cancel"
      2      8 "Chiudi"

Offline Benjamin Siskoo

  • Newbies
  • *
  • Posts: 47
  • Karma: +5/-0
    • Tradu-France
Re: French Language problem (maybe other language too)...
« Reply #4 on: July 13, 2017, 06:23:08 PM »
Hi Benjamin.

Problem 1: Fixed.  :biggrin:
Problem 2: I'll take a look at it for the next release.

Thanks Trebble :)

Nice catch Gab75 :)

Offline jan_klaassen

  • FBNeo Dev
  • ******
  • Posts: 315
  • Karma: +10/-0
Re: French Language problem (maybe other language too)...
« Reply #5 on: July 27, 2017, 08:50:30 PM »
There's a bug in localise.cpp, line 1441

Code: [Select]
// Link a new control info structure
if (n < 256) {

There's actually room for 1024 controls.

The 2nd problerm with the dialog is also a bug, use this for now:

Code: [Select]
        //-- "Select desired 3D projection properties"
dialog   67 "" {
        //-- "OK"
      1    0 ""
        //-- "Screen Angle"
  20094    2 "skew!"
        //-- "Fishbowl Factor"
  20096    5 "fish!"
        //-- "Cancel"
      2    8 ""
}

That was fixed some time ago, see repository for code.

Offline Gab75

  • FBNeo Contributor
  • *****
  • Posts: 1481
  • Karma: +33/-0
  • All games deserve to be emulated, more or less! :P
Re: French Language problem (maybe other language too)...
« Reply #6 on: July 28, 2017, 08:20:25 AM »
@jan_klaassen: thanks for fixes! :)

Offline Benjamin Siskoo

  • Newbies
  • *
  • Posts: 47
  • Karma: +5/-0
    • Tradu-France
Re: French Language problem (maybe other language too)...
« Reply #7 on: July 29, 2017, 06:32:34 AM »
Nice and thanks :)