diff --git a/core/lib/Drupal/Core/Datetime/Element/Datetime.php b/core/lib/Drupal/Core/Datetime/Element/Datetime.php index df0847ef32e2dfe124e0cede56d814f206d1e29c..d298e216bb5201359990b3d405828eb551e9baad 100644 --- a/core/lib/Drupal/Core/Datetime/Element/Datetime.php +++ b/core/lib/Drupal/Core/Datetime/Element/Datetime.php @@ -241,7 +241,7 @@ public static function processDatetime(&$element, FormStateInterface $form_state // placeholders are invalid for HTML5 date and datetime, so an example // format is appended to the title to appear in tooltips. $extra_attributes = array( - 'title' => t('Date (i.e. !format)', array('!format' => static::formatExample($date_format))), + 'title' => t('Date (e.g. !format)', array('!format' => static::formatExample($date_format))), 'type' => $element['#date_date_element'], ); @@ -286,7 +286,7 @@ public static function processDatetime(&$element, FormStateInterface $form_state // Adds the HTML5 attributes. $extra_attributes = array( - 'title' => t('Time (i.e. !format)', array('!format' => static::formatExample($time_format))), + 'title' => t('Time (e.g. !format)', array('!format' => static::formatExample($time_format))), 'type' => $element['#date_time_element'], 'step' => $element['#date_increment'], );