diff options
author | Friendika <info@friendika.com> | 2011-02-23 19:30:57 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-23 19:30:57 -0800 |
commit | 15780914eca543bf14dbf211bcbf7d18e3553639 (patch) | |
tree | 4c634b1309e018ebfaec2f6203e84e6f25ba4f46 /boot.php | |
parent | 953d8ccb546997bb0201cc60e118dd4b80b38c3c (diff) | |
download | volse-hubzilla-15780914eca543bf14dbf211bcbf7d18e3553639.tar.gz volse-hubzilla-15780914eca543bf14dbf211bcbf7d18e3553639.tar.bz2 volse-hubzilla-15780914eca543bf14dbf211bcbf7d18e3553639.zip |
another template made language neutral
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -768,7 +768,12 @@ function escape_tags($string) { if(! function_exists('login')) { function login($register = false) { $o = ""; - $register_html = (($register) ? load_view_file("view/register-link.tpl") : ""); + $register_tpl = (($register) ? load_view_file("view/register-link.tpl") : ""); + + $register_html = replace_macros($register_tpl,array( + '$title' => t('Create a New Account'), + '$desc' => t('Register') + )); $noid = get_config('system','no_openid'); if($noid) { |