| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2009, 2011, 2012, 2013 Apple Inc. All rights reser
ved. | 2 * Copyright (C) 2003, 2006, 2009, 2011, 2012, 2013 Apple Inc. All rights reser
ved. |
| 3 * Copyright (C) 2010 Igalia S.L | 3 * Copyright (C) 2010 Igalia S.L |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 String validationMessageTypeMismatchForURLText(); | 174 String validationMessageTypeMismatchForURLText(); |
| 175 String validationMessagePatternMismatchText(); | 175 String validationMessagePatternMismatchText(); |
| 176 String validationMessageTooLongText(int valueLength, int maxLength); | 176 String validationMessageTooLongText(int valueLength, int maxLength); |
| 177 String validationMessageRangeUnderflowText(const String& minimum); | 177 String validationMessageRangeUnderflowText(const String& minimum); |
| 178 String validationMessageRangeOverflowText(const String& maximum); | 178 String validationMessageRangeOverflowText(const String& maximum); |
| 179 String validationMessageStepMismatchText(const String& base, const String& s
tep); | 179 String validationMessageStepMismatchText(const String& base, const String& s
tep); |
| 180 String validationMessageBadInputForNumberText(); | 180 String validationMessageBadInputForNumberText(); |
| 181 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 181 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 182 String validationMessageBadInputForDateTimeText(); | 182 String validationMessageBadInputForDateTimeText(); |
| 183 #endif | 183 #endif |
| 184 #if USE(SOUP) | |
| 185 String unacceptableTLSCertificate(); | |
| 186 #endif | |
| 187 | 184 |
| 188 String clickToExitFullScreenText(); | 185 String clickToExitFullScreenText(); |
| 189 | 186 |
| 190 String textTrackSubtitlesText(); | 187 String textTrackSubtitlesText(); |
| 191 String textTrackOffText(); | 188 String textTrackOffText(); |
| 192 String textTrackNoLabelText(); | 189 String textTrackNoLabelText(); |
| 193 | 190 |
| 194 } // namespace WebCore | 191 } // namespace WebCore |
| 195 | 192 |
| 196 #endif // LocalizedStrings_h | 193 #endif // LocalizedStrings_h |
| OLD | NEW |