Nightinggale
Deity
- Joined
- Feb 2, 2009
- Messages
- 5,378
We have a very long wishlist of new features and way too few people coding those features. Even worse, the programmers tend to be jack of all trades and does everything (particularly Kailric). I decided to attempt a bit of resource management and see if non-programming tasks can be removed from programmers. This thread is for just that: posting tasks which takes little or no technical skills to do.
The first task I will add is adding singular/plural versions of strings. It's actually not that hard.
We have this string right now:
Are there anybody who feels like looking though the strings and apply this where it's needed?
The first task I will add is adding singular/plural versions of strings. It's actually not that hard.
We have this string right now:
It should be written like this:<English>[ICON_BULLET]Grants %d1_Num Free Invention(s)</English>
The result is that it uses the first string whenever NUM1 (aka %d1) is 1 and the latter for all other numbers. Replace 1 with whatever number is needed for the string in question.<English>[ICON_BULLET]Grants %d1_Num Free [NUM1:Invention:Inventions]</English>
Are there anybody who feels like looking though the strings and apply this where it's needed?