From 81b8ba32beb3151025d3b390c0621e074bceae36 Mon Sep 17 00:00:00 2001 From: Greg Froese Date: Mon, 19 Oct 2009 05:34:47 +0000 Subject: flickr integration changes --- actions/flickrImportPhotoset.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/flickrImportPhotoset.php') diff --git a/actions/flickrImportPhotoset.php b/actions/flickrImportPhotoset.php index d28ea8564..ec0d65b5d 100644 --- a/actions/flickrImportPhotoset.php +++ b/actions/flickrImportPhotoset.php @@ -18,7 +18,7 @@ $user = get_loggedin_user(); $flickr_id = get_metadata_byname( $user->guid, "flickr_id" ); if( empty( $flickr_id )) { - register_error( "You must enter a username" ); + register_error( elgg_echo( 'flickr:errorusername2' )); forward( $return_url ); die; //just in case } @@ -33,7 +33,7 @@ foreach( $photos["photoset"]["photo"] as $photo ) { //check if we already have this image $meta = get_metadata_byname( $user->guid, $photo["id"] ); if( $meta->value == 1 ) { //we've downloaded this already - register_error( "This image has already been imported" ); + register_error( elgg_echo( 'flickr:errorimageimport' )); continue; } //store this so we don't download the same photo multiple times -- cgit v1.2.3