Index: wp-includes/link-template.php
===================================================================
--- wp-includes/link-template.php	(revision 17600)
+++ wp-includes/link-template.php	(working copy)
@@ -1579,7 +1579,7 @@
  * @param int $max_page Optional. Max pages.
  * @return string|null
  */
-function get_next_posts_link( $label = 'Next Page &raquo;', $max_page = 0 ) {
+function get_next_posts_link( $label = null, $max_page = 0 ) {
 	global $paged, $wp_query;
 
 	if ( !$max_page )
@@ -1589,6 +1589,8 @@
 		$paged = 1;
 
 	$nextpage = intval($paged) + 1;
+		
+	$label = ( '' === $label ) ? $label : __( 'Next Page &raquo;' );
 
 	if ( !is_single() && ( $nextpage <= $max_page ) ) {
 		$attr = apply_filters( 'next_posts_link_attributes', '' );
@@ -1605,7 +1607,7 @@
  * @param string $label Content for link text.
  * @param int $max_page Optional. Max pages.
  */
-function next_posts_link( $label = 'Next Page &raquo;', $max_page = 0 ) {
+function next_posts_link( $label = null, $max_page = 0 ) {
 	echo get_next_posts_link( $label, $max_page );
 }
 
@@ -1655,8 +1657,10 @@
  * @param string $label Optional. Previous page link text.
  * @return string|null
  */
-function get_previous_posts_link( $label = '&laquo; Previous Page' ) {
+function get_previous_posts_link( $label = null ) {
 	global $paged;
+	
+	$label = ( '' === $label ) ? $label : __( '&laquo; Previous Page' );
 
 	if ( !is_single() && $paged > 1 ) {
 		$attr = apply_filters( 'previous_posts_link_attributes', '' );
@@ -1672,7 +1676,7 @@
  *
  * @param string $label Optional. Previous page link text.
  */
-function previous_posts_link( $label = '&laquo; Previous Page' ) {
+function previous_posts_link( $label = null ) {
 	echo get_previous_posts_link( $label );
 }
 
