diff -u b/core/modules/quickedit/quickedit.module b/core/modules/quickedit/quickedit.module --- b/core/modules/quickedit/quickedit.module +++ b/core/modules/quickedit/quickedit.module @@ -22,25 +22,19 @@ switch ($route_name) { case 'help.page.quickedit': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Quickedit module provides you a in-place content editing functionality for fields/entities without having to visit a seperate page for editing. For more information, see the online documentation for the quickedit module.', array('!handbook_url' => 'https://drupal.org/documentation/modules/edit')) . '

'; + $output .= '

' . t('The Quick Edit module allows users with the Access in-place editing permission to edit field content without visiting a separate page. For more information, see the online documentation for the Quick Edit module.', array('!handbook_url' => 'https://drupal.org/documentation/modules/edit')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('In-place content editing') . '
'; - $output .= '
' . t('For a user with sufficient permissions there are two ways of activating the in-content editing.', array('!permissions' => url('admin/people/permissions', array('fragment' => 'module-quickedit')))); + $output .= '
' . t('For a user with sufficient permissions there are two ways of activating the in-place content editing.', array('!permissions' => \Drupal::url('user.admin_permissions', array(), array('fragment' => 'module-path')))); $output .= ''; $output .= t('Clicking the contextual link there will be an option "Quick Edit" if available on that content. Choosing that all editable fields will be surronded by a blue border and the current active field will also have show a popup for that field.'); $output .= '
'; - $output .= '
' . t('Functionality of the popup:') . '
'; - $output .= '
'; - $output .= t('The popup shows information for the active field. If a title field it displays the title, any other field it shows fieldname -> title, and to the right a cross/X to exit the "Quick edit".'); - $output .= '
'; - $output .= '
' . t('Editing') . '
'; - $output .= '
' . t('Click on the field to start editing its content. A visual editor will be available if the format of the field is linked with an editor.'); - $output .= '
'; + $output .= '
'; return $output; } }