alemart / opensurge

A retro game engine with a fun platformer for making your dreams come true!
http://opensurge2d.org
GNU General Public License v3.0
385 stars 33 forks source link

Zone number is concatenated to CLEARED_LINE2 #10

Closed Wuzzy2 closed 4 years ago

Wuzzy2 commented 4 years ago

The translation strings CLEARED_LINE1 and CLEARED_LINE2 are annoying to translate. It doesn't include the zone number as parameter. Apparently Open Surge just appends the number always at the end.

That's a problem for translating because not in all languages you can put the number at the end.

alemart commented 4 years ago

Thank you for pointing it out. In the latest build, you can translate using $LEVEL_ACT. This will be replaced by the zone number. Example:

CLEARED_LINE2 "CLEARED ZONE $LEVEL_ACT"

Let me know if you find any problems.

Wuzzy2 commented 4 years ago

This is fixed now.