1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-29 01:19:11 +00:00

(svn r2594) Fix: [strgen] Misc updates to the string system.

- Renamed the plural command to "P" instead of "PLURAL". Now write something like this to append an s on plural: {P "" s}. (You can optionally still add an argument index to explicitly specifiy which number that's used)
  - Removed the pluralized cargo strings from the string files. The new method is to use the plural specifier {P}
  - Added support for genders. First add "##gender der das die" on top, then use {G=der} on a cargoname/industry to set the gender, and to switch between genders do something like {G neu neu neue} {STRING}
  - Updated the swedish/english translation with P strings.
This commit is contained in:
ludde
2005-07-16 20:58:04 +00:00
parent 01f3b6b6fe
commit 64f6839816
13 changed files with 159 additions and 148 deletions

4
misc.c
View File

@@ -430,8 +430,8 @@ void InitializeLandscapeVariables(bool only_constants)
str = lpd->names[i];
_cargoc.names_s[i] = str;
_cargoc.names_p[i] = (str += 0x20);
_cargoc.names_long_s[i] = (str += 0x20);
_cargoc.names_long_p[i] = (str += 0x20);
_cargoc.names_long[i] = (str += 0x20);
// _cargoc.names_long_p[i] = (str += 0x20);
_cargoc.names_short[i] = (str += 0x20);
_cargoc.weights[i] = lpd->weights[i];