diff options
author | friendica <info@friendica.com> | 2012-09-02 02:29:17 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-09-02 02:29:17 -0700 |
commit | 58ddd2d565e320f62e0524b2a0eaaef4b940f60c (patch) | |
tree | 2a215504555f16f783f56524cb974b7ef2494371 | |
parent | 38344798f23c12db2409fb91d5e2aaf6c492c6f5 (diff) | |
download | volse-hubzilla-58ddd2d565e320f62e0524b2a0eaaef4b940f60c.tar.gz volse-hubzilla-58ddd2d565e320f62e0524b2a0eaaef4b940f60c.tar.bz2 volse-hubzilla-58ddd2d565e320f62e0524b2a0eaaef4b940f60c.zip |
Trying to simplify channels
-rw-r--r-- | mod/zentity.php | 7 | ||||
-rw-r--r-- | view/tpl/zentity.tpl | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/mod/zentity.php b/mod/zentity.php index 4e3977982..a0f49b47c 100644 --- a/mod/zentity.php +++ b/mod/zentity.php @@ -99,10 +99,11 @@ function zentity_content(&$a) { $o = replace_macros(get_markup_template('zentity.tpl'), array( - '$title' => t('Create a Profile Channel'), - '$desc' => t('A channel is a collection of web resources attached to a profile page. This is typically used to create a personal profile, but may also be used to create a blog, public and private forums, celebrity pages, and more. You may create as many of these as your provider allows.'), + '$title' => t('Add a Channel'), + '$desc' => t('A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows.'), - '$label_name' => t('Full name'), + '$label_name' => t('Channel Name'), + '$help_name' => t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group" '), '$label_nick' => t('Choose a short nickname'), '$nick_desc' => t('Your nickname will be used to create an easily remembered web address ("webbie") for your channel.'), '$label_import' => t('Check this box to import an existing channel file from another location'), diff --git a/view/tpl/zentity.tpl b/view/tpl/zentity.tpl index f41578117..b2da59934 100644 --- a/view/tpl/zentity.tpl +++ b/view/tpl/zentity.tpl @@ -9,6 +9,8 @@ <div id="zentity-name-feedback" class="zentity-feedback"></div> <div id="zentity-name-end" class="zentity-field-end"></div> + <div id="zentity-name-help" class="descriptive-paragraph">$help_name</div> + <label for="zentity-nickname" id="label-zentity-nickname" class="zentity-label" >$label_nick</label> <input type="text" name="nickname" id="zentity-nickname" class="zentity-input" value="$nickname" /> <div id="zentity-nickname-feedback" class="zentity-feedback"></div> |