1154: Rename 'credit' -> 'credits' r=Learath2 a=ChillerDragon

It's named ConCredits and there are many people credited so i guess the plural is fitting better c;

Co-authored-by: ChillerDragon <chillerdragon@gmail.com>
This commit is contained in:
bors[bot] 2018-06-17 12:53:18 +00:00
commit 6850fa98bf

View file

@ -15,25 +15,25 @@ void CGameContext::ConCredits(IConsole::IResult *pResult, void *pUserData)
{
CGameContext *pSelf = (CGameContext *) pUserData;
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"DDNet is run by the DDNet staff (DDNet.tw/staff)");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"Great maps and many ideas from the great community");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"Help and code by eeeee, HMH, east, CookieMichal, Learath2,");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"Savander, laxa, Tobii, BeaR, Wohoo, nuborn, timakro, Shiki,");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"trml, Soreu, hi_leute_gll, Lady Saavik, Chairn, heinrich5991,");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"swick, oy, necropotame, Ryozuki, Redix, d3fault, marcelherd,");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"BannZay, ACTom, SiuFuWong, PathosEthosLogos, TsFreddie,");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"Jupeyy, noby, ChillerDragon & others.");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"Based on DDRace by the DDRace developers,");
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credit",
pSelf->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "credits",
"which is a mod of Teeworlds by the Teeworlds developers.");
}