Merged from revision: 6761

- Campaign Stats: Externalized hard coded "and" text to language specific text files

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@6762 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Wanne
2014-01-13 20:30:39 +00:00
parent 3804ef6650
commit 8d5ed89e14
12 changed files with 15 additions and 5 deletions
+3 -3
View File
@@ -430,15 +430,15 @@ Incident_Stats::GetAttackerDirString( BOOLEAN fAttacker )
switch ( dirs )
{
case 4:
swprintf(helperstr, L"%s, %s, %s and %s", dir1, dir2, dir3, dir4 );
swprintf(helperstr, L"%s, %s, %s %s %s", dir1, dir2, dir3, szCampaignHistoryDetail[TEXT_CAMPAIGNHISTORY_DETAIL_AND], dir4 );
break;
case 3:
swprintf(helperstr, L"%s, %s and %s", dir1, dir2, dir3 );
swprintf(helperstr, L"%s, %s %s %s", dir1, dir2, szCampaignHistoryDetail[TEXT_CAMPAIGNHISTORY_DETAIL_AND], dir3 );
break;
case 2:
swprintf(helperstr, L"%s and %s", dir1, dir2 );
swprintf(helperstr, L"%s %s %s", dir1, szCampaignHistoryDetail[TEXT_CAMPAIGNHISTORY_DETAIL_AND], dir2 );
break;
case 1: