Index: trunk/xpressme_integration_kit/include/add_xpress_process.php
===================================================================
--- trunk/xpressme_integration_kit/include/add_xpress_process.php	(revision 548)
+++ trunk/xpressme_integration_kit/include/add_xpress_process.php	(revision 549)
@@ -19,4 +19,10 @@
 				update_option('home' , $_POST['home_url_set']);
 			}
+		}
+		if (!empty($_POST['submit_redirect'])) {
+			$url = get_option('home') . '/wp-admin/options-permalink.php';
+//			echo $url;
+			wp_redirect($url);
+			exit();
 		}
 
@@ -52,10 +58,13 @@
 			$form .= '<tbody>';
 			if ($site_url_error){
-				$site_url_error_log = sprintf('Can not access WordPress Site URL(%s)',$siteurl);
+				$site_url_error_log = __('Can not access WordPress address (URL).','xpressme');
 				$form .= '<tr><td colspan="3"><font color="red"><b>' . $site_url_error_log . '</b></font></td></tr>';
 				$form .= '<tr>';
 				$form .= '<td width="16">&nbsp;</td>';
-				$form .= '<td width="64">Site URL</td>';
-				$form .= '<td><input name="site_url_set" type="text" size="64" maxlength="200" value="'  . $guess_url . '" /></td>';
+				$form .= '<td width="64">'.__('WordPress address (URL)').'</td>';
+				$form .= '<td>';
+				$form .= $siteurl . '<br />';
+				$form .= '&emsp;to<br />';
+				$form .= '<input name="site_url_set" type="text" size="64" maxlength="200" value="'  . $guess_url . '" /></td>';
 				$form .= '</tr>';
 
@@ -63,19 +72,35 @@
 			if ($home_url_error){
 				if ($site_url_error) $form .= '<tr><td colspan="3">&nbsp;</td></tr>';;
-				$home_url_error_log = sprintf('WordPress Home URL(%s) is different from access URL. ',$home);
+				$home_url_error_log = __('WordPress Blog address (URL) is different from access URL.','xpressme');
 				$form .= '<tr><td colspan="3"><font color="red"><b>' . $home_url_error_log . '</b></font></td></tr>';
 				$form .= '<tr>';
 				$form .= '<td width="16">&nbsp;</td>';
-				$form .= '<td width="64">Home URL</td>';
-				$form .= '<td><input name="home_url_set" type="text" size="64" maxlength="200" value="'  . $guess_url . '" /></td>';
+				$form .= '<td width="144">'. __('Blog address (URL)') .'</td>';
+				$form .= '<td>';
+				$form .= $home . '<br />';
+				$form .= '&emsp;to<br />';
+				$form .= '<input name="home_url_set" type="text" size="64" maxlength="200" value="'  . $guess_url . '" /></td>';
 				$form .= '</tr>';
 			}
 			$form .= '</tbody>';
 			$form .= '</table><br />';
-			$form .= '<input type="submit" value= "Setting" name="submit_url_change" />' ."\n";
+			$form .= '<input type="submit" value= "'.__('Save Changes').'" name="submit_url_change" />' ."\n";
+			$form .= '</form>' ."\n";
 			echo $form;
 			include $xoops_config->xoops_root_path . '/footer.php';
 			exit();
 		}
+		if (!empty($_POST['home_url_set'])) {
+			$url = get_option('home') . '/wp-admin/options-permalink.php';
+			$form = '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n";
+			$form .= '<p><font color="blue"><b>'. __('After Blog address (URL) is set, it is necessary to set the permalink again.','xpressme').'</b></font></p>';
+			$form .= '<input type="submit" value= "'.__('Permalink Settings').'" name="submit_redirect" />' ."\n";
+			$form .= '</form>' ."\n";
+			include $xoops_config->xoops_root_path ."/header.php";
+			echo $form;
+			include $xoops_config->xoops_root_path . '/footer.php';
+			exit();
+		}
+
 	}
 }
Index: trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php	(revision 548)
+++ trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php	(revision 549)
@@ -5,4 +5,9 @@
 	$xoops_config = new ConfigFromXoops;
 }
+
+$dummy = __('After Blog address (URL) is set, it is necessary to set the permalink again.','xpressme');
+$dummy = __('Can not access WordPress address (URL).','xpressme');
+$dummy = __('WordPress Blog address (URL) is different from access URL.','xpressme');
+
 
 function get_xoops_config($config_name,$module_dir){
