Changing names of series to "Serie ...", instead of "Week ..."

This commit is contained in:
marcins78@gmail.com
2012-04-26 21:38:28 +00:00
parent 4dfeb3118c
commit 29cd12f39a
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ public class NewConstructedLeagueData implements LeagueData {
String format = params[4 + i * 3];
int duration = Integer.parseInt(params[5 + i * 3]);
int maxMatches = Integer.parseInt(params[6 + i * 3]);
_series.add(new DefaultLeagueSerieData(_leaguePrizes, false, "Week " + (i + 1),
_series.add(new DefaultLeagueSerieData(_leaguePrizes, false, "Serie " + (i + 1),
serieStart, DateUtils.offsetDate(serieStart, duration - 1),
maxMatches, format, null, collectionType));

View File

@@ -36,7 +36,7 @@ public class NewSealedLeagueData implements LeagueData {
_series = new LinkedList<LeagueSerieData>();
for (int i = 0; i < 4; i++) {
_series.add(
new DefaultLeagueSerieData(_leaguePrizes, true, "Week " + (i + 1),
new DefaultLeagueSerieData(_leaguePrizes, true, "Serie " + (i + 1),
DateUtils.offsetDate(start, i * serieDuration), DateUtils.offsetDate(start, (i + 1) * serieDuration - 1), maxMatches,
_format, _format, _collectionType));
}