--- ./trunk/wordpress/wp-includes/post-template.php
+++ ./trunk/wordpress/wp-includes/post-template.php
@@ -74,7 +74,10 @@
 	return apply_filters('get_the_guid', $post->guid);
 }
 
-function the_content($more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {
+function the_content($more_link_text = '', $stripteaser = 0, $more_file = '') {
+	if ( strlen( $more_link_text ) === 0 ) {
+		$more_link_text = __('(more...)');
+	}
 	$content = get_the_content($more_link_text, $stripteaser, $more_file);
 	$content = apply_filters('the_content', $content);
 	$content = str_replace(']]>', ']]&gt;', $content);
@@ -82,9 +85,13 @@
 }
 
 
-function get_the_content($more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {
+function get_the_content($more_link_text = '', $stripteaser = 0, $more_file = '') {
 	global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow;
 
+	if ( strlen( $more_link_text ) === 0 ) {
+		$more_link_text = __('(more...)');
+	}
+
 	$output = '';
 
 	if ( !empty($post->post_password) ) { // if there's a password

