diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-04-07 13:36:34 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-04-07 13:36:34 +0200 |
commit | 969a91c4321eecade0537bf40b2ba5930da27d8a (patch) | |
tree | 5256891ea37ae20c46e811de708fd9313960c19f | |
parent | 4d08fcf1a7075c933c8b57b9bf1d66acbb19ec07 (diff) | |
download | volse-hubzilla-969a91c4321eecade0537bf40b2ba5930da27d8a.tar.gz volse-hubzilla-969a91c4321eecade0537bf40b2ba5930da27d8a.tar.bz2 volse-hubzilla-969a91c4321eecade0537bf40b2ba5930da27d8a.zip |
use Title instead of Caption - issue #1037
-rw-r--r-- | Zotlabs/Module/Photos.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index 05cacb2c2..fa22c3f26 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -695,8 +695,8 @@ class Photos extends \Zotlabs\Web\Controller { '$newalbum_label' => t('Enter an album name'), '$newalbum_placeholder' => t('or select an existing album (doubleclick)'), '$visible' => array('visible', t('Create a status post for this upload'), 0,'', array(t('No'), t('Yes')), 'onclick="showHideBodyTextarea();"'), - '$caption' => array('description', t('Caption (optional):')), - '$body' => array('body', t('Description (optional):'),'', 'Description will only appear in the status post'), + '$caption' => array('description', t('Title (optional)')), + '$body' => array('body', t('Description (optional)'),'', 'Description will only appear in the status post'), '$albums' => $albums['albums'], '$selname' => $selname, '$permissions' => t('Permissions'), @@ -1065,7 +1065,7 @@ class Photos extends \Zotlabs\Web\Controller { 'newalbum_placeholder' => t('or select an existing one (doubleclick)'), 'nickname' => \App::$data['channel']['channel_address'], 'resource_id' => $ph[0]['resource_id'], - 'capt_label' => t('Caption'), + 'capt_label' => t('Title (optional)'), 'caption' => $caption_e, 'tag_label' => t('Add a Tag'), 'permissions' => t('Permissions'), |