diff options
author | Friendika <info@friendika.com> | 2011-03-07 19:58:22 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-07 19:58:22 -0800 |
commit | 989b1b209e838232082f83841fb8f0324ebbae97 (patch) | |
tree | 24913721ce35fd4d47b6aef4a3a6cdb0889f2bb1 /mod | |
parent | fb481e0b2fb62deec1b86684d1bba98c8dbbc6ef (diff) | |
download | volse-hubzilla-989b1b209e838232082f83841fb8f0324ebbae97.tar.gz volse-hubzilla-989b1b209e838232082f83841fb8f0324ebbae97.tar.bz2 volse-hubzilla-989b1b209e838232082f83841fb8f0324ebbae97.zip |
one more template free from translation, allow for later item editing within jot.tpl
Diffstat (limited to 'mod')
-rw-r--r-- | mod/network.php | 11 | ||||
-rw-r--r-- | mod/profile.php | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/mod/network.php b/mod/network.php index 144ae5874..1ef4ab372 100644 --- a/mod/network.php +++ b/mod/network.php @@ -87,6 +87,17 @@ function network_content(&$a, $update = 0) { $o .= replace_macros($tpl,array( '$return_path' => $a->cmd, + '$action' => 'item', + '$share' => t('Share'), + '$upload' => t('Upload photo'), + '$weblink' => t('Insert web link'), + '$youtube' => t('Insert YouTube video'), + '$setloc' => t('Set your location'), + '$noloc' => t('Clear browser location'), + '$wait' => t('Please wait'), + '$permset' => t('Permission settings'), + '$content' => '', + '$post_id' => '', '$baseurl' => $a->get_baseurl(), '$defloc' => $a->user['default-location'], '$visitor' => 'block', diff --git a/mod/profile.php b/mod/profile.php index 827530bc8..b23af2e66 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -147,6 +147,17 @@ function profile_content(&$a, $update = 0) { $o .= replace_macros($tpl,array( '$baseurl' => $a->get_baseurl(), + '$action' => 'item', + '$share' => t('Share'), + '$upload' => t('Upload photo'), + '$weblink' => t('Insert web link'), + '$youtube' => t('Insert YouTube video'), + '$setloc' => t('Set your location'), + '$noloc' => t('Clear browser location'), + '$wait' => t('Please wait'), + '$permset' => t('Permission settings'), + '$content' => '', + '$post_id' => '', '$defloc' => (($is_owner) ? $a->user['default-location'] : ''), '$return_path' => $a->cmd, '$visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'), |