I want to unify the text with the localized text, how do I do this?
For example, this work:
This not work:
Desired behavior:
"Игроки text"
How can I do it?
How to combine simple text with localized text
How to combine simple text with localized text
My native language is russian. Sorry if my messages are difficult to read.
Re: How to combine simple text with localized text
ru.cfg
Lua
More examples: http://lua-api.factorio.com/latest/Conc ... isedString
Code: Select all
[gui]
Players="Игроки"
PlayersText="Игроки __1__"
Code: Select all
/c game.player.print{"gui.PlayersText", text}
Re: How to combine simple text with localized text
It helped me, thanks!DaveMcW wrote:ru.cfgLuaCode: Select all
[gui] Players="Игроки" PlayersText="Игроки __1__"
More examples: http://lua-api.factorio.com/latest/Conc ... isedStringCode: Select all
/c game.player.print{"gui.PlayersText", text}
My native language is russian. Sorry if my messages are difficult to read.