aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-23 19:30:57 -0800
committerFriendika <info@friendika.com>2011-02-23 19:30:57 -0800
commit15780914eca543bf14dbf211bcbf7d18e3553639 (patch)
tree4c634b1309e018ebfaec2f6203e84e6f25ba4f46 /boot.php
parent953d8ccb546997bb0201cc60e118dd4b80b38c3c (diff)
downloadvolse-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.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index d9786edcd..8de891f38 100644
--- a/boot.php
+++ b/boot.php
@@ -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) {