diff options
author | Friendika <info@friendika.com> | 2011-04-07 16:19:46 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-07 16:19:46 -0700 |
commit | 5d5a94c88a173b95e902afc31a9a2e527b6d3098 (patch) | |
tree | 477a70ec09f7ef508fc5361b3cba3ce7ca127b8a /mod | |
parent | 000efa6df0ab2510e56d6ffb9a1c6e9f98ac2fc1 (diff) | |
download | volse-hubzilla-5d5a94c88a173b95e902afc31a9a2e527b6d3098.tar.gz volse-hubzilla-5d5a94c88a173b95e902afc31a9a2e527b6d3098.tar.bz2 volse-hubzilla-5d5a94c88a173b95e902afc31a9a2e527b6d3098.zip |
comment open/close anomolies in non-English languages
Diffstat (limited to 'mod')
-rw-r--r-- | mod/display.php | 2 | ||||
-rw-r--r-- | mod/network.php | 2 | ||||
-rw-r--r-- | mod/photos.php | 2 | ||||
-rw-r--r-- | mod/profile.php | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/mod/display.php b/mod/display.php index f74137e0e..8224e491b 100644 --- a/mod/display.php +++ b/mod/display.php @@ -170,6 +170,8 @@ function display_content(&$a) { '$mylink' => $contact['url'], '$mytitle' => t('This is you'), '$myphoto' => $contact['thumb'], + '$comment' => t('Comment'), + '$submit' => t('Submit'), '$ww' => '' )); } diff --git a/mod/network.php b/mod/network.php index 42c6c0c29..678a41f0a 100644 --- a/mod/network.php +++ b/mod/network.php @@ -502,6 +502,8 @@ function network_content(&$a, $update = 0) { '$mylink' => $a->contact['url'], '$mytitle' => t('This is you'), '$myphoto' => $a->contact['thumb'], + '$comment' => t('Comment'), + '$submit' => t('Submit'), '$ww' => $commentww )); } diff --git a/mod/photos.php b/mod/photos.php index 061542c75..2e0ccd248 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1105,6 +1105,8 @@ function photos_content(&$a) { '$mylink' => $contact['url'], '$mytitle' => t('This is you'), '$myphoto' => $contact['thumb'], + '$comment' => t('Comment'), + '$submit' => t('Submit'), '$ww' => '' )); } diff --git a/mod/profile.php b/mod/profile.php index b421591f6..3d0b79a70 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -391,6 +391,8 @@ function profile_content(&$a, $update = 0) { '$mylink' => $contact['url'], '$mytitle' => t('This is you'), '$myphoto' => $contact['thumb'], + '$comment' => t('Comment'), + '$submit' => t('Submit'), '$ww' => '' )); } |