diff --git a/core/modules/file/file.module b/core/modules/file/file.module index 038b7cf..a0570d2 100644 --- a/core/modules/file/file.module +++ b/core/modules/file/file.module @@ -29,11 +29,11 @@ function file_help($path, $arg) { $output .= '
' . t('Managing and displaying file fields') . '
'; $output .= '
' . t('The settings and the display of the file field can be configured separately. See the Field UI help for more information on how to manage fields and their display.', array('!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')))) . '
'; $output .= '
' . t('Allowing file extensions') . '
'; - $output .= '
' . t('In the field settings, you can define which are the allowed file extensions (e.g. pdf docx psd) for the files that will be uploaded with the file field.') . '
'; + $output .= '
' . t('In the field settings, you can define the allowed file extensions (for example pdf docx psd) for the files that will be uploaded with the file field.') . '
'; $output .= '
' . t('Storing files ') . '
'; - $output .= '
' . t('Uploaded files can either be stored as public or private, depending on the File system settings. For more information, see the System help page.', array('!file-system' => \Drupal::url('system.file_system_settings'), '!system-help' => \Drupal::url('help.page', array('name' => 'system')))) . '
'; + $output .= '
' . t('Uploaded files can either be stored as public or private, depending on the File system settings. For more information, see the System module help page.', array('!file-system' => \Drupal::url('system.file_system_settings'), '!system-help' => \Drupal::url('help.page', array('name' => 'system')))) . '
'; $output .= '
' . t('Restricting the maximum file size') . '
'; - $output .= '
' . t('The maximum file size that users can upload is limited by PHP settings of the server, but you can restrict it by entering the appropriate value into the Maximum upload size field. The maximum file size is automatically displayed to users in the help text of the file field.') . '
'; + $output .= '
' . t('The maximum file size that users can upload is limited by PHP settings of the server, but you can restrict by entering the desired value as the Maximum upload size setting. The maximum file size is automatically displayed to users in the help text of the file field.') . '
'; $output .= '
' . t('Displaying files and descriptions') . '
'; $output .= '
' . t('In the field settings, you can allow users to toggle whether individual files are displayed. In the display settings, you can then choose one of the following formats: A file can still be linked to directly by its URI even if it is not displayed.') . '
'; $output .= '';