diff options
author | Friendika <info@friendika.com> | 2010-12-16 19:38:52 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-16 19:38:52 -0800 |
commit | 70f4f172dc1785f9a68b5f0dafbfb4cc365a449f (patch) | |
tree | 42779e7af9bd4a6fd59ccd408ddb9409b28d3b2f /mod/dfrn_request.php | |
parent | f60f82727f96c033aaff9f5b5f0767c722e25f28 (diff) | |
download | volse-hubzilla-70f4f172dc1785f9a68b5f0dafbfb4cc365a449f.tar.gz volse-hubzilla-70f4f172dc1785f9a68b5f0dafbfb4cc365a449f.tar.bz2 volse-hubzilla-70f4f172dc1785f9a68b5f0dafbfb4cc365a449f.zip |
pull strings from connection request templates
Diffstat (limited to 'mod/dfrn_request.php')
-rw-r--r-- | mod/dfrn_request.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index 65a2c771e..9c8064db5 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -535,6 +535,20 @@ function dfrn_request_content(&$a) { else $tpl = load_view_file('view/auto_request.tpl'); $o .= replace_macros($tpl,array( + '$header' => t('Friend/Connection Request'), + '$pls_answer' => t('Please answer the following:'), + '$does_know' => t('Does $name know you?'), + '$yes' => t('Yes'), + '$no' => t('No'), + '$add_note' => t('Add a personal note:'), + '$page_desc' => t('Please enter your profile address from one of the following supported social networks:'), + '$friendika' => t('Friendika'), + '$statusnet' => t('StatusNet/Federated Social Web'), + '$private_net' => t("Private \x28secure\x29 network"), + '$public_net' => t("Public \x28insecure\x29 network"), + '$your_address' => t('Your profile address:'), + '$submit' => t('Submit Request'), + '$cancel' => t('Cancel'), '$nickname' => $a->argv[1], '$name' => $a->profile['name'], '$myaddr' => $myaddr |