diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-06-09 20:06:36 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-06-09 20:06:36 -0400 |
commit | 7fc2b13fe605ad461f6b6aeacd6a187c1ef794de (patch) | |
tree | ce50b326d5db16032e8bf62e456ad04c11dd4e5d /include | |
parent | e46e7002a8945f3156b4c4dcfdedb57316d94ba9 (diff) | |
download | volse-hubzilla-7fc2b13fe605ad461f6b6aeacd6a187c1ef794de.tar.gz volse-hubzilla-7fc2b13fe605ad461f6b6aeacd6a187c1ef794de.tar.bz2 volse-hubzilla-7fc2b13fe605ad461f6b6aeacd6a187c1ef794de.zip |
Stashing changes. Not a functional state.
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 518193b08..bf29048b6 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1143,6 +1143,8 @@ function status_editor($a, $x, $popup = false) { $weblink = (($mimetype === 'text/bbcode') ? t('Insert web link') : false); if(x($x, 'hide_weblink')) $weblink = false; + + $embedPhotos = t('Embed image from photo albums'); $writefiles = (($mimetype === 'text/bbcode') ? perm_is_allowed($x['profile_uid'], get_observer_hash(), 'write_storage') : false); if(x($x, 'hide_attach')) @@ -1178,6 +1180,12 @@ function status_editor($a, $x, $popup = false) { '$whereareu' => t('Where are you right now?'), '$editor_autocomplete'=> ((x($x,'editor_autocomplete')) ? $x['editor_autocomplete'] : ''), '$bbco_autocomplete'=> ((x($x,'bbco_autocomplete')) ? $x['bbco_autocomplete'] : ''), + '$modalchooseimages' => t('Choose images to embed'), + '$modalchoosealbum' => t('Choose an album'), + '$modaldiffalbum' => t('Choose a different album...'), + '$modalerrorlist' => t('Error getting album list'), + '$modalerrorlink' => t('Error getting photo link'), + '$modalerroralbum' => t('Error getting album'), )); $tpl = get_markup_template('jot.tpl'); @@ -1219,6 +1227,10 @@ function status_editor($a, $x, $popup = false) { '$code' => t('Code'), '$attach' => t('Attach file'), '$weblink' => $weblink, + '$embedPhotos' => $embedPhotos, + '$embedPhotosModalTitle' => t('Embed an image from your albums'), + '$embedPhotosModalCancel' => t('Cancel'), + '$embedPhotosModalOK' => t('OK'), '$setloc' => $setloc, '$voting' => t('Toggle voting'), '$feature_voting' => $feature_voting, |