Problems with string design

Report bugs, bug fixes and workarounds here.
Topic author
GunChleoc
Posts: 1
Joined: 13.07.2017
With us: 7 years 7 months

Problems with string design

Post #1by GunChleoc » 13.07.2017, 15:42

Hi all,

I have started translating Celestia into Scottish Gaelic, and there are some problems with the string design - it would be great if they could be fixed.

src/celengine/meshmanager.cpp:171

Code: Select all

Error loading model '

This needs to be:

Code: Select all

Error loading model '%s'

so I can choose my own quote characters. Some languages also might have trouble with word order here.

src/celengine/meshmanager.cpp:164

Code: Select all

 vertices,

please fetch this with ngettext like this:

Code: Select all

ngettext("%d vertex", "%d vertices", no_vertices)

For example, I would have 13 goban, 20 gob in a correct translation. Slavic languages like Russian will also have problems here.

Return to “Bugs”