There’s not really a way to do this. You could add text to the footer under Appearance -> Widgets, but it would appear before the site title and navigation menu there, not directly before the footer credits.
You could do some fancy footwork with a footer widget. Add a Text widget to the First Footer Sidebar with your content, and then add the following custom CSS:
#supplementary #first .widget {
margin: 90px 0 0 0;
position: absolute;
width: 75%;
text-align: center;
}
You may need to adjust the first margin (currently 90px) to position the text where you want it. This would also prevent you from using the other footer widgets easily in the future.