var Resources = function() {

    return {

		//------------------------------------
        Blog: {
            Confirm: 'Are you sure you want to delete this blog?'
		    , FinalConfirm: 'Are you sure you want to delete this blog? This is permanent and cannot be undone!'
		    , DeleteSuccess: 'The blog has been successfully deleted.'
		    , DeleteFail: 'Sorry! Unable to delete this blog.'
        }

        //------------------------------------
		, Badges: {
			PreviewAlert: 'You need some text before you can preview the badge.'
			, ConfirmDelete : 'Are you sure you want to delete this badge ?'
		}

        //------------------------------------
		, Paging: {
		    Next: 'Next'
			, Previous: 'Previous'
		}

        //------------------------------------
		, Post: {
		    Confirm: 'Are you sure you want to delete this post?'
			, LatestPosts: 'Latest Posts'
			, MostRead: 'Most Read'
			, MostCommented: 'Most Commented'
			, NewBlogs: 'New Blogs'
			, NoSubject: 'Please enter a subject'
			, NoText: 'Please enter some text'
		}

        //------------------------------------
		, Comment: {
		    Confirm: 'Are you sure you want to delete this comment?'
		}

        //------------------------------------
		, Invite: {
		    SubscribeSuccess: 'Your subscription is pending. Please verify via the email we have sent you.'
			, InvalidEmail: 'Please enter valid email addresses'
			, SelectAnItem: 'You need to select at least one item.'
		}

        //------------------------------------
		, Abuse: {
		    ThankYou: 'Thank you! Our team will consider your feedback.'
			, TooLong: 'You have exceeded 1500 characters!'
			, RequiredField: 'Please enter a comment.'
		}

        //------------------------------------
		, Search: {
		    Invalid: 'Please enter valid search criteria.'
		}

		//------------------------------------
		, Bookmarking: {
		    Invalid: 'Please enter your name and valid recipient email!'
		    , Sent: 'Sent!'
		    , NotSent: 'Email not sent!'
		}

		//------------------------------------
		, Settings: {
			BrowseFirst: 'You first have to browse for a file.'
			, ConfirmReset: 'Are you sure you want to reset your theme?'
			, InvalidFile: 'Only JPG, JPEG, GIF and PNG files are allowed.'
			, PasswordChangeValid: 'Password must match.'

		}

		//------------------------------------
		, Home: {
			Polling : {
				Start: 'start updating'
				, Stop : 'stop updating'
			}
		}	
		
		//------------------------------------
		, PostDraft : {
			Confirm : 'You have a previously saved draft. Would you like to continue editing it ?'
		}

		//------------------------------------
		, Messages: {
			ConfirmDelete: 'Are you sure you want to delete this message?'
		}
    };

} ();