The International Simutrans Forum

Development => Patches & Projects => Incorporated Patches and Solved Bug Reports => Topic started by: z9999 on December 20, 2008, 10:45:02 am

Title: Missing string in base.tab
Post by: z9999 on December 20, 2008, 10:45:02 am
"Vergroessere die Karte\n"
"Toggle day/night view"
"Remove"  ... for marker window
"No stop here!"

Code: [Select]
obj=program_text
name=Vergroessere die Karte\n
--
obj=program_text
name=Toggle day/night view
--
obj=program_text
name=Remove
--
obj=program_text
name=No stop here!
--

Title: Re: Missing string in base.tab
Post by: prissi on December 20, 2008, 10:28:08 pm
Thank you.
Title: Re: Missing string in base.tab
Post by: z9999 on January 30, 2009, 09:26:23 am
Texts for label list window.

"labellist_title"
"Active player only"
"koord"
"player"

Code: [Select]
obj=program_text
name=labellist_title
--
obj=program_text
name=Active player only
--
obj=program_text
name=koord
--
obj=program_text
name=player
--
Title: Re: Missing string in base.tab
Post by: Frank on January 30, 2009, 10:19:59 am
...
Code: [Select]
obj=program_text
name=labellist_title
--
obj=program_text
name=Active player only
--
obj=program_text
name=koord
--
obj=program_text
name=player
--


obj=program_text
name=labellist_title
note=Description
--
obj=program_text
name=Active player only
note=Description
--
obj=program_text
name=koord
note=Description
--
obj=program_text
name=player
note=Description
--

and crossing info

obj=program_text
name=\nway1 reserved by
note=text in crossing info
--
obj=program_text
name=cars.\nway2 reserved by
note=text in crossing info
--
obj=program_text
name=cars.\nstate
note=text in crossing info
--
obj=program_text
name=open
note=text in crossing info
--
obj=program_text
name=close
note=text in crossing info
--
Title: Re: Missing string in base.tab
Post by: z9999 on January 30, 2009, 10:37:30 am
Crossing state are ...
Code: [Select]
static const char *state_str[4] = { "invalid", "open", "request closing", "closed" };
Title: Re: Missing string in base.tab
Post by: Frank on January 30, 2009, 11:05:49 am
texts in crossing_logic.cc

Code: [Select]
	buf.append( translator::translate("\nway1 reserved by ") );
buf.append( on_way1.get_count() );
buf.append( translator::translate("cars.\nway2 reserved by ") );
buf.append( on_way2.get_count() );
buf.append( translator::translate( "cars.\nstate ") );

[attachment deleted by admin]
Title: Re: Missing string in base.tab
Post by: z9999 on January 30, 2009, 01:15:50 pm
Yes, as your picture shows, it's "closed"
Title: Re: Missing string in base.tab
Post by: Frank on January 31, 2009, 09:55:48 pm
oh yes, sorry
Title: Re: Missing string in base.tab
Post by: prissi on January 31, 2009, 10:12:49 pm
Anyway, had to remove trailing spaced to add them to svn. Thus now in base.tab they are correct.
Title: Re: Missing string in base.tab
Post by: z9999 on February 01, 2009, 01:07:24 pm
Thank you. But unfortunately there is a typo.
"\nway1 reserved by" is duplicated.

dataobj/crossing_logic.cc:49-51
Code: [Select]
	buf.append( translator::translate("\nway1 reserved by") );
buf.append( on_way1.get_count() );
buf.append( translator::translate("\nway1 reserved by") );
Title: Re: Missing string in base.tab
Post by: z9999 on February 23, 2009, 07:23:37 am

--
obj=program_text
name=Choose direction
note=window title to choose direction of station buildings
--

By the way, can someone upload all new words to SimuTranslator ?
The value of river settings are still not readable.
Title: Re: Missing string in base.tab
Post by: prissi on February 23, 2009, 01:28:29 pm
There were trouble with translator last week and during this weekend. I will do this today.