diff options
author | Stefan Parviainen <saparvia@caterva.eu> | 2014-12-08 16:49:48 +0100 |
---|---|---|
committer | Stefan Parviainen <saparvia@caterva.eu> | 2014-12-08 16:49:48 +0100 |
commit | 97d1072f9bc39b47769576e5885c04a5f1bacd9a (patch) | |
tree | d0195d8d3f30f423b6f2a67d0f8fd61f48c63957 /include | |
parent | 81f3b206106b4f46c980a5cb04271752eb415b72 (diff) | |
download | volse-hubzilla-97d1072f9bc39b47769576e5885c04a5f1bacd9a.tar.gz volse-hubzilla-97d1072f9bc39b47769576e5885c04a5f1bacd9a.tar.bz2 volse-hubzilla-97d1072f9bc39b47769576e5885c04a5f1bacd9a.zip |
Make it clear that title and categories are optional
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php index 6b3e278f0..c8336900f 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1131,10 +1131,10 @@ function status_editor($a,$x,$popup=false) { '$noloc' => t('Clear browser location'), '$shortnoloc' => t('clear location'), '$title' => ((x($x,'title')) ? htmlspecialchars($x['title'], ENT_COMPAT,'UTF-8') : ''), - '$placeholdertitle' => t('Set title'), + '$placeholdertitle' => t('Title (optional)'), '$catsenabled' => ((feature_enabled($x['profile_uid'],'categories') && (! $webpage)) ? 'categories' : ''), '$category' => "", - '$placeholdercategory' => t('Categories (comma-separated list)'), + '$placeholdercategory' => t('Categories (optional, comma-separated list)'), '$wait' => t('Please wait'), '$permset' => t('Permission settings'), '$shortpermset' => t('permissions'), |