summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.trafficinfo/src/org/genivi/trafficincidentsservice/textgenerator/basictextgenerator/TextParts.java
blob: 18efb818fcabd5b5f921dcb872356be4bf1c2c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
 * Copyright (C) 2013 TomTom International B.V.
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.genivi.trafficincidentsservice.textgenerator.basictextgenerator;

import java.util.ListResourceBundle;

public class TextParts extends ListResourceBundle {
  public Object[][] getContents() {
    return contents;
  }

  private Object[][] contents = {
      {"locationTemplate", "On the {0} from {1} to {2} between {3} and {4}: "},
      {"locationTemplateShort", "On the {0} between {1} and {2}: "},
      {"averageSpeedAbsoluteTemplate", " with an average driving speed of {0,number} {1}"},
      {"speedLimitTemplate", " with a speedlimit of {0,number} {1}"},
      {"expectedSpeedTemplate", " with an expected speed of {0,number} {1}"},
      {"lengthAffectedTemplate", " over a length of {0,number} {1}"},
      {"delayTemplate", " resulting in a delay of {0} minutes"},
      {"fromPart", " from "},
      {"tillPart", " till "},
      {"tendencyPart", " tendency is "},
      {"causedByPart", " caused by"},
      {"advicePart", "advice"},
      {"laneRestrictionsPart", " lane restrictions "},
      {"unverifiedInformationPart", " (unverified information)"},
      {"applicabilityPart", " This information is only applicable for:"},
      {"tomorrow", "tomorrow "},
      {"tonnes", "tonnes"},
      {"pounds", "pound"},
      {"foot", "feet"}
  };
}