Line data Source code
1 : /// Abstract class containing all Strings for ApptiveGrid 2 : abstract class ApptiveGridTranslation { 3 : /// Super const constructor 4 10 : const ApptiveGridTranslation(); 5 : 6 : /// Label for [FormAction] Buttons 7 : String get actionSend; 8 : 9 : /// Displayed when a [FormData] was send to the server successfully 10 : String get sendSuccess; 11 : 12 : /// Message displayed when the form was saved to the [ApptiveGridCache] 13 : String get savedForLater; 14 : 15 : /// Title displayed when there has been an error 16 : String get errorTitle; 17 : 18 : /// Message providing the User to send an additional answer 19 : String get additionalAnswer; 20 : 21 : /// Message in the error State to allow users to go back to the form 22 : String get backToForm; 23 : 24 : /// Message indicating that a [Grid] is loading in a [CrossReferenceFormWidget] 25 : String get loadingGrid; 26 : 27 : /// Prompts the User to select an Entry from a [Grid] 28 : String get selectEntry; 29 : 30 : /// Indicates that a Field with [fieldName] must be filled in order to send a form 31 : String fieldIsRequired(String fieldName); 32 : 33 : /// Search Hint for Cross Reference Search 34 : String get crossRefSearch; 35 : 36 : /// Label of date section in a DateTime Picker 37 : String get dateTimeFieldDate; 38 : 39 : /// Label of time section in a DateTime Picker 40 : String get dateTimeFieldTime; 41 : 42 : /// Message if a [CheckboxFormWidget] is required 43 : String get checkboxRequired; 44 : }