Changeset 1520
- Timestamp:
- 01/20/08 00:28:46 (11 months ago)
- Files:
-
- devel/mod/community/invite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/mod/community/invite.php
r1400 r1520 24 24 $title = run("profile:display:name") . " :: " . __gettext("Invite people"); 25 25 26 $body = '<h3> Invite people</h3>';27 $body .= '<p> Invite people to this community.</p>';26 $body = '<h3>'.__gettext("Invite people").'</h3>'; 27 $body .= '<p>'.__gettext("Invite people to this community.").'</p>'; 28 28 $body .= '<form action="" method="post">'; 29 29 30 30 $submit_search_label = __gettext("Search"); 31 31 32 $name_or_username = __gettext("Name or username:"); 32 33 $invite_search = <<< END 33 34 <p> 34 Name or username:<input type="text" name="invite_name"/><br/>35 {$name_or_username} <input type="text" name="invite_name"/><br/> 35 36 <input type="submit" name="submit" value="{$submit_search_label}"/> 36 37 </p> … … 80 81 } 81 82 82 $body .= '<input type="submit" name="Invite" value=" Invite"/>';83 $body .= '<input type="submit" name="Invite" value="'.__gettext("Invite").'"/>'; 83 84 } 84 85 }
