summaryrefslogtreecommitdiff
path: root/src/strings.cpp
AgeCommit message (Collapse)Author
2010-05-04(svn r19758) -Add: {HEIGHT} string commandrubidium
2010-04-17(svn r19649) -Add: plural rule for Malteserubidium
-Fix: plural rule for Irish
2010-04-06(svn r19570) -Add: [NewGRF] support for extended text code 0x9A 11, print qwordyexo
2010-04-06(svn r19569) -Fix: possible buffer underflow in newgrf string codeyexo
2010-04-01(svn r19534) -Add: Keep a list of cargo specifications sorted by cargo class ↵terkhen
/ name.
2010-03-28(svn r19521) -Codechange: Use a IndustryType array to sort industries by ↵terkhen
name instead of a LegendAndColour array.
2010-03-18(svn r19452) -Change: plural type of Slovak (keso)rubidium
2010-02-24(svn r19224) -Codechange: change parameters passed to ShowErrorMessage() a bitsmatz
2010-02-20(svn r19180) -Add/Fix: (partial) support for genders for cargos, industries, ↵rubidium
vehicles, stations, ...; partial because you can't set a gender for a custom string.
2010-02-12(svn r19112) -Fix [FS#3611]: don't crash on broken lng filesmatz
2010-01-15(svn r18809) -Codechange/Cleanup: remove unneeded headers from some files, ↵rubidium
if a header require a header make it include that header
2009-12-22(svn r18603) -Codechange: move getting the song name to music_gui.cpprubidium
2009-11-29(svn r18339) -Cleanup: remove SKIP support from strgen toorubidium
2009-11-19(svn r18181) -Add: the concept of zero filled numbers to strgenrubidium
2009-11-14(svn r18078) -Codechange: remove some duplicate (non translatable) stringsrubidium
2009-10-31(svn r17928) -Codechange: ShowErrorMessage() now takes the summary string ↵alberth
before the details string. Gentlemen, swap your string parameters.
2009-10-17(svn r17794) -Feature: [OSX] Implement automatic fallback font selection for ↵michi_cc
OSX.
2009-10-17(svn r17790) -Feature: translatable base sound/graphics set descriptionsrubidium
2009-10-04(svn r17701) -Codechange: don't start line with a space if it's not inside ↵smatz
comment
2009-10-04(svn r17693) -Cleanup: remove some unneeded includesrubidium
2009-09-22(svn r17612) -Feature: possibility to choose (randomise or enter custom) ↵smatz
town name before its creation (original patch by Terkhen)
2009-09-21(svn r17597) -Codechange: rename namegen* to townname*smatz
2009-09-13(svn r17526) -Codechange: use QSortT instead of qsort for sorting the ↵rubidium
language list in the network GUI
2009-08-21(svn r17248) -Fix: add GPL license notice where appropriaterubidium
2009-08-19(svn r17219) -Cleanup: remove a lot of unused string codeyexo
2009-08-12(svn r17157) -Add: localised decimal separatorsmatz
2009-08-06(svn r17095) -Codechange: make ParseStringChoice a bit saferrubidium
2009-08-05(svn r17075) -Codechange: rename ~750 strings to be more uniform with their ↵rubidium
relatives
2009-08-05(svn r17073) -Codechange: constify iec_prefixes[], change the code around a bitsmatz
2009-07-31(svn r17001) -Codechange: replace some more assert(0)s to NOT_REACHED() and ↵rubidium
document why they (assert(0)) have to stay for the remaining cases.
2009-07-25(svn r16946) -Doc: Adding docs for some string parameter manipulation functions.alberth
2009-07-24(svn r16935) -Codechange: Improve wording of .lng file error message (found ↵alberth
by cmoiromain).
2009-07-22(svn r16921) -Codechange: make it more clear what strings are related to ↵rubidium
road vehicles; only ROAD isn't always enough. Also unify the way of writing it.
2009-07-22(svn r16912) -Codechange: split waypoint.h in waypoint_base.h and ↵rubidium
waypoint_func.h
2009-07-22(svn r16909) -Fix [FS#2996]: NewGRF stations would be triggering assertions ↵rubidium
all over the place when using the more advanced station types. -Change: make (rail) waypoints sub classes of 'base stations', make buoys waypoints and unify code between them where possible.
2009-07-20(svn r16886) -Codechange: unify naming of some string IDs related to string ↵rubidium
codes and group them logically
2009-07-16(svn r16855) -Codechange: remove unused 'conversion' stuff from the waypoint ↵rubidium
struct and make it more similar to Station.
2009-07-16(svn r16849) -Codechange: replace GetCargo() by CargoSpec::Get()smatz
2009-07-13(svn r16811) -Change: introduce a plural 'rule' for Koreanrubidium
2009-06-27(svn r16677) -Codechange: Dimension width and height are unsigned.alberth
2009-06-10(svn r16560) -Fix (r16559): wrong replacement at one placesmatz
2009-06-10(svn r16559) -Codechange: introduce Company::IsValidAiID() and ↵smatz
Company::IsValidHumanID(), don't use IsHumanCompany() where possible
2009-06-01(svn r16492) -Remove: support for gcc2. It hasn't been able to compile OTTD ↵smatz
for months. All attempts to do another workaround failed.
2009-05-24(svn r16421) -Codechange: do not unnecessarily remove constness or ↵rubidium
unnecessarily add it.
2009-05-22(svn r16378) -Codechange: replace OldPool with simpler Pool. Compilation ↵smatz
time, binary size and run time (with asserts disabled) should be improved
2009-05-18(svn r16352) -Codechange: use PoolItem::GetIfValid() instead of ↵smatz
PoolItem::IsValidID() and PoolItem::Get()
2009-05-17(svn r16327) -Codechange: replace IsValidPoolItemID(index) by ↵smatz
PoolItem::IsValidID(index)
2009-05-16(svn r16325) -Codechange: replace GetPoolItem(index) by PoolItem::Get(index)smatz
2009-04-30(svn r16188) -Fix [FS#2874] (r16124): printing the first 4 bytes worth of a ↵rubidium
8 byte integer causes some unwanted side effects when the system is not little-endian.
2009-04-25(svn r16144) -Fix (r16129): setting the custom digit grouping separator ↵rubidium
required to restart OpenTTD to take effect. Now also support non 1 ASCII character custom grouping separators.