diff --git a/core/modules/picture/picture.module b/core/modules/picture/picture.module index 2a6e6d2..d163aef 100644 --- a/core/modules/picture/picture.module +++ b/core/modules/picture/picture.module @@ -16,12 +16,14 @@ function picture_help($path, $arg) { switch ($path) { case 'admin/help#picture': $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Picture module provides an image formatter and breakpoint mappings to output responsive images using the HTML5 picture tag.') . '

'; + $output .= '

' . t('The Picture module provides an image formatter and breakpoint mappings to output responsive images using the HTML5 picture tag. For more information, see the online handbook entry for Picture module.', array( + '@picture' => 'http://drupal.org/documentation/modules/picture', + )) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Mapping image styles to breakpoints') . '
'; $output .= '
' . t('To use responsive images, you need to define what size the images should be depending on the breakpoints. The Picture module allows you to define which image style should be used for each breakpoint on the picture mappings administrative page.', array( - '@link' => url('admin/config/media/picturemapping'), + '@link' => \Drupal::url('picture.mapping_page'), )) . '
'; $output .= '
' . t('Formatting an Image field') . '
'; $output .= '
' . t('Images in Image fields can be formatted using the Picture formatter, to make them responsive. They will be automatically resized depending on breakpoints.') . '
';