Index: bp-core-signup.php
===================================================================
--- bp-core-signup.php	(revision 1634)
+++ bp-core-signup.php	(working copy)
@@ -190,7 +190,7 @@
 	do_action('signup_finished');
 }
 
-function bp_core_signup_signup_user($user_name = '', $user_email = '', $errors = '') {
+function bp_core_signup_signup_user($user_name = '', $user_email = '', $errors = '', $args = '') {
 	global $current_site, $active_signup;
 
 	$active_signup = get_site_option( 'registration' );
@@ -209,10 +209,22 @@
 	$user_email = $filtered_results['user_email'];
 	$errors = $filtered_results['errors'];
 
+	// Allow for sign-up text to be changed
+	$defaults = array(
+		'intro_text' => __( 'If you want to create your first blog, select the option below and you\'ll be asked for a few more details.', 'buddypress' ), // Text for paragraph before sign up fields
+		'create_blog_title' => __( 'Create a Blog?', 'buddypress' ), // Text for title if blogs are enabled
+		'blog_help_text' => __( 'If you want to create your first blog, select the option below and you\'ll be asked for a few more details.', 'buddypress' ),
+		'give_me_blog_text' => __( 'Gimme a blog!', 'buddypress' ), // Text for user requesting a blog
+		'username_only_text' => __( 'Just a username, please.', 'buddypress' ), // Text for user not wanting a blog
+		'next_text' => __('Next &raquo;'), // Text for next button
+	);
+
+	$r = wp_parse_args( $args, $defaults );
+	extract( $r, EXTR_SKIP );
 	?>
 	
 	<form id="setupform" method="post" action="<?php echo site_url(BP_REGISTER_SLUG) ?>">
-		<p id="intro-text"><?php _e( 'Registering for a new account is easy, just fill in the form below and you\'ll be a new member in no time at all.', 'buddypress' ) ?></p>
+		<p id="intro-text"><?php echo $intro_text ?></p>
 		<input type="hidden" name="stage" value="validate-user-signup" />
 		<?php do_action( "signup_hidden_fields" ); ?>
 		
@@ -224,24 +236,24 @@
 			<input id="signupblog" type="hidden" name="signup_for" value="user" />
 		<?php } else { ?>
 			<div id="blog-or-username">
-				<h3><?php _e( 'Create a Blog?', 'buddypress' ) ?></h3>
-				<p id="blog-help-text"><?php _e( 'If you want to create your first blog, select the option below and you\'ll be asked for a few more details.', 'buddypress' ) ?></p>
+				<h3><?php echo $create_blog_title ?></h3>
+				<p id="blog-help-text"><?php echo $blog_help_text ?></p>
 				
 				<div id="blog-or-username-fields">
 					<p>
 						<input id="signupblog" type="radio" name="signup_for" value="blog" <?php echo $signup['blog'] ?> />
-						<label class="checkbox" for="signupblog"><?php _e( 'Gimme a blog!', 'buddypress' ) ?></label>			
+						<label class="checkbox" for="signupblog"><?php echo $give_me_blog_text ?></label>
 					</p>
 				
 					<p>
 						<input id="signupuser" type="radio" name="signup_for" value="user" <?php echo $signup['user'] ?> />			
-						<label class="checkbox" for="signupuser"><?php _e( 'Just a username, please.', 'buddypress' ) ?></label>
+						<label class="checkbox" for="signupuser"><?php echo username_only_text ?></label>
 					</p>
 				</div>
 			</div>
 		<?php } ?>
 
-		<input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Next &raquo;') ?>"/>
+		<input id="submit" type="submit" name="submit" class="submit" value="<?php echo $next_text ?>"/>
 	</form>
 	<?php
 }
