diff --git a/charts.module b/charts.module index 23f1938d455d8cccc0be4dbbc6b5b1e4bdec0c08..8e1279d43015a3bd5c50af624ac4e891386ba0dd 100644 --- a/charts.module +++ b/charts.module @@ -26,7 +26,7 @@ function charts_menu() { 'description' => 'Set the default library, behavior, and style of charts.', 'page callback' => 'drupal_get_form', 'page arguments' => array('charts_default_settings_form'), - 'access arguments' => array('set default settings for charts'), + 'access arguments' => array('administer charts'), 'file' => 'includes/charts.pages.inc', ); $items['charts/examples'] = array( @@ -158,11 +158,12 @@ function charts_library() { function charts_permission() { return array( 'administer charts' => array( - 'title' => t('Configure chart settings'), + 'title' => t('Administer Charts'), + 'description' => t('Visit the <a href="!url">Default chart configuration</a> (used for Charts administration)', array('!url' => url('admin/config/content/charts'))), ), 'access example charts' => array( 'title' => t('Access example charts'), - 'description' => t('Grants access to the <a href="!url">charts examples</a> page. Use this page for testing chart functionality.', array('!url' => url('charts/examples'))), + 'description' => t('Visit the <a href="!url">Charts examples</a> (used for Charts testing and demo)', array('!url' => url('charts/examples'))), ), ); }