diff options
author | friendica <info@friendica.com> | 2012-11-03 20:13:21 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-03 20:13:21 -0700 |
commit | be0f376d6a9c3995eb454dd4e7806d329d4b4afd (patch) | |
tree | f41c59395daf4609e9ae31a63492370d5bbfbf73 /include | |
parent | f55636aeb61e0bd8e1a5770715d117f4c6bcaf0c (diff) | |
download | volse-hubzilla-be0f376d6a9c3995eb454dd4e7806d329d4b4afd.tar.gz volse-hubzilla-be0f376d6a9c3995eb454dd4e7806d329d4b4afd.tar.bz2 volse-hubzilla-be0f376d6a9c3995eb454dd4e7806d329d4b4afd.zip |
expanded help text for features
Diffstat (limited to 'include')
-rw-r--r-- | include/features.php | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/include/features.php b/include/features.php index d881461ef..c4fe0df55 100644 --- a/include/features.php +++ b/include/features.php @@ -16,14 +16,15 @@ function get_features() { $arr = array( -'multi_delete' => t('Multiple Deletion'), -'expire' => t('Content Expiration'), -'commtag' => t('Community Tagging'), -'categories' => t('Post Categories'), -'filing' => t('Saved Folders'), -'archives' => t('Search by Date'), -'dislike' => t('Dislike Posts'), -'savedsearch' => t('Saved Searches'), +array('multi_delete', t('Multiple Deletion'), t('Select and delete multiple posts/comments at once')), +array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), +array('commtag', t('Community Tagging'), t('Tag existing posts and share the links')), +array('categories', t('Post Categories'), t('Add categories to your channel postings')), +array('filing', t('Saved Folders'), t('Ability to file posts under easily remembered names')), +array('archives', t('Search by Date'), t('Select posts by date ranges')), +array('dislike', t('Dislike Posts'), t('Ability to dislike posts/comments')), +array('savedsearch', t('Saved Searches'), t('Save search terms for re-use')), +array('preview', t('Post Preview'), t('Preview posts and comments before publishing them')), ); |