Index: app/sites/all/modules/contrib/avatarcrop/avatarcrop.module
===================================================================
--- app/sites/all/modules/contrib/avatarcrop/avatarcrop.module	(revision 2651)
+++ app/sites/all/modules/contrib/avatarcrop/avatarcrop.module	(working copy)
@@ -50,10 +50,10 @@
 			$enablePicture=variable_get('user_pictures','0');
 			if($enablePicture) {
 				if($users->picture){
-					$pictureMsg = 'Change Avatar';
+					$pictureMsg = t('Change Avatar');
 				}
 				else {
-					$pictureMsg = 'Upload Picture';
+					$pictureMsg = t('Upload Picture');
 				}
 				$base=base_path();
 				global $user;
@@ -85,7 +85,7 @@
 	$form['avatar_crop_title']=array(
 		'#prefix' => '<div class="avatar-crop-title">',
   		'#suffix' => '</div>',
-  		'#value' => 'Choose profile picture.',
+  		'#value' => t('Choose profile picture.'),
     );
   	$form['file_upload'] = array(
     	'#title' => t('Upload file'),
@@ -93,7 +93,7 @@
   	);
   	$form['submit_upload'] = array(
     	'#type'  =>  'submit',
-    	'#value'  =>  'Upload'
+    	'#value'  =>  t('Upload')
   );
   
   $enablePicture=variable_get('user_pictures','0');
@@ -101,10 +101,10 @@
 		return $form;
 	}
 	else {
-		$form2['user_picture_disable']=array(
+		$form2['user_picture_disable']=array( 
 			'#prefix' => '<div class="message error">',
 	  		'#suffix' => '</div>',
-		  	'#value' => 'Please enable user picture first to use Avatar crop.',
+		  	'#value' => t('Please enable user picture first to use Avatar crop.'),
 	    );
 	    return $form2;
 	}
@@ -168,7 +168,7 @@
 		$form['avatar_crop_title']=array(
 			'#prefix' => '<div class="avatar-crop-title">',
   			'#suffix' => '</div>',
-  			'#value' => 'Make a selection on the below image to define the crop area.',
+  			'#value' => t('Make a selection on the below image to define the crop area.'),
     	);
 		$form['imageview']= array(
 			'#value' => '<img src="'. $base.$filePath .'"  id="cropbox" />',
@@ -194,7 +194,7 @@
 		);
 		$form['cropsubmit'] = array(
 			'#type' => 'submit',
-			'#value' => 'Continue',
+			'#value' => t('Continue'),
 			//'#submit' => array('cropSubmit'),
 		);
 		
@@ -213,7 +213,7 @@
 	$h=$form_state['values']['h'];
 		
 	if(!$h){
-		form_set_error('','Please crop the image to continue.');
+		form_set_error('',t('Please crop the image to continue.'));
 	}
 	
 }
